Update tests to have the latency in frames.

This commit is contained in:
Paul Adenot 2016-07-20 14:20:37 +02:00
Родитель ad0a5a904c
Коммит 5d41eb1b70
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -161,7 +161,7 @@ int run_test(int num_channels, int sampling_rate, 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;

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

@ -106,7 +106,7 @@ int main(int argc, char *argv[])
params.channels = 1;
r = cubeb_stream_init(ctx, &stream, "Cubeb record (mono)", NULL, &params, NULL, nullptr,
250, data_cb, state_cb, &stream_state);
4096, data_cb, state_cb, &stream_state);
if (r != CUBEB_OK) {
fprintf(stderr, "Error initializing cubeb stream\n");
return r;

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

@ -128,7 +128,7 @@ int main(int argc, char *argv[])
user_data->position = 0;
r = cubeb_stream_init(ctx, &stream, "Cubeb tone (mono)", NULL, NULL, NULL, &params,
250, data_cb, state_cb, user_data);
4096, data_cb, state_cb, user_data);
if (r != CUBEB_OK) {
fprintf(stderr, "Error initializing cubeb stream\n");
return r;