ao_null: fix simulated buffer size

The size accidentally defaulted to 200 seconds instead of 200
milliseconds, which had fatal consequences when trying to use it.
This commit is contained in:
wm4 2013-11-19 22:14:23 +01:00
parent 85f6349c78
commit b14a7da5d4
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ const struct ao_driver audio_out_null = {
.resume = resume,
.priv_size = sizeof(struct priv),
.priv_defaults = &(const struct priv) {
.bufferlen = 200,
.bufferlen = 0.2,
.outburst = 256,
},
.options = (const struct m_option[]) {