Update a test to have the latency in frames.

This commit is contained in:
Paul Adenot 2016-07-19 11:53:06 +02:00
Родитель 22db111f2b
Коммит c99c306f25
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -213,7 +213,8 @@ int run_panning_volume_test(int is_float)
}
r = cubeb_stream_init(ctx, &stream, "test tone", NULL, NULL, NULL, &params,
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;