Browse Source

testaudiocapture: ask for way more output samples.

Fixes Emscripten builds on Chrome for Android.
Ryan C. Gordon 9 years ago
parent
commit
b6daf1f60a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/testaudiocapture.c

+ 1 - 1
test/testaudiocapture.c

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