Commit d7a3c742 authored by Thomas Turner's avatar Thomas Turner Committed by Michael Niedermayer

avutil/tests/audio_fifo.c: Corrected test error messages

Signed-off-by: 's avatarThomas Turner <thomastdt@googlemail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent f3170800
......@@ -140,7 +140,7 @@ static void test_function(const TestStruct test_sample)
ret = read_samples_from_audio_fifo(afifo, &output_data, test_sample.nb_samples_pch);
if (ret < 0){
ERROR("ERROR: av_audio_fifo_write failed!");
ERROR("ERROR: av_audio_fifo_read failed!");
}
printf("read: %d\n", ret);
print_audio_bytes(&test_sample, output_data, ret);
......@@ -160,7 +160,7 @@ static void test_function(const TestStruct test_sample)
for (i = 0; i < afifo->nb_samples; ++i){
ret = av_audio_fifo_peek_at(afifo, output_data, 1, i);
if (ret < 0){
ERROR("ERROR: av_audio_fifo_peek failed!");
ERROR("ERROR: av_audio_fifo_peek_at failed!");
}
printf("%d:\n", i);
print_audio_bytes(&test_sample, output_data, ret);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment