diff options
Diffstat (limited to 'test/test_audio.cpp')
-rw-r--r-- | test/test_audio.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_audio.cpp b/test/test_audio.cpp index 7a8adf6..e2c72dd 100644 --- a/test/test_audio.cpp +++ b/test/test_audio.cpp @@ -213,7 +213,8 @@ int run_panning_volume_test(int is_float) } r = cubeb_stream_init(ctx, &stream, "test tone", NULL, NULL, NULL, ¶ms, - 100, is_float ? data_cb_float : data_cb_short, state_cb, synth); + 4096, is_float ? data_cb_float : data_cb_short, + state_cb, synth); if (r != CUBEB_OK) { fprintf(stderr, "Error initializing cubeb stream: %d\n", r); goto cleanup; |