From 6de5cc32f68ce8627c591d0fbd7df9568af777de Mon Sep 17 00:00:00 2001 From: bnnm Date: Sat, 4 Apr 2020 22:28:34 +0200 Subject: [PATCH] Change vgmstream123 default buffer to 1kb for Pi Zero --- cli/vgmstream123.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cli/vgmstream123.c b/cli/vgmstream123.c index 3d3066c7..47dba887 100644 --- a/cli/vgmstream123.c +++ b/cli/vgmstream123.c @@ -89,7 +89,9 @@ static ao_option *device_options = NULL; static ao_sample_format current_sample_format; static sample_t *buffer = NULL; -static int buffer_size_kb = 16; +/* reportedly 1kb helps Raspberry Pi Zero play FFmpeg formats without stuttering + * (presumably other low powered devices too), plus it's the default in other plugins */ +static int buffer_size_kb = 1; static int repeat = 0; static int verbose = 0;