testaudiocapture: ask for way more output samples.

Fixes Emscripten builds on Chrome for Android.
This commit is contained in:
Ryan C. Gordon 2016-08-12 22:50:48 -04:00
parent d05ae1941c
commit b6daf1f60a

View file

@ -121,7 +121,7 @@ main(int argc, char **argv)
wanted.freq = 44100;
wanted.format = AUDIO_F32SYS;
wanted.channels = 1;
wanted.samples = 1024;
wanted.samples = 4096;
wanted.callback = NULL;
SDL_zero(spec);