summaryrefslogtreecommitdiffstats
path: root/audio/out/ao.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/out/ao.c')
-rw-r--r--audio/out/ao.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/out/ao.c b/audio/out/ao.c
index 9cfa383972..7abb33f89f 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -107,8 +107,7 @@ void list_audio_out(void)
struct ao *ao_create(struct MPOpts *opts, struct input_ctx *input)
{
struct ao *r = talloc(NULL, struct ao);
- *r = (struct ao){.outburst = 512, .buffersize = -1,
- .opts = opts, .input_ctx = input };
+ *r = (struct ao){.opts = opts, .input_ctx = input };
return r;
}