Skip to content

Commit

Permalink
testaudiocapture: ask for way more output samples.
Browse files Browse the repository at this point in the history
Fixes Emscripten builds on Chrome for Android.
  • Loading branch information
icculus committed Aug 13, 2016
1 parent d05ae19 commit b6daf1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testaudiocapture.c
Expand Up @@ -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);
Expand Down

0 comments on commit b6daf1f

Please sign in to comment.