Change vgmstream123 default buffer to 1kb for Pi Zero

This commit is contained in:
bnnm 2020-04-04 22:28:34 +02:00
parent d556919895
commit 6de5cc32f6

View File

@ -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;