[FFmpeg-devel] [PATCH] lavfi/amerge: drop duplicated "Buffer queue overflow" message

Stefano Sabatini stefasab at gmail.com
Tue Apr 9 01:07:53 CEST 2013


The same message is shown already by the called function
ff_bufqueue_is_full().
---
 libavfilter/af_amerge.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/libavfilter/af_amerge.c b/libavfilter/af_amerge.c
index e9a7fc9..4a7b0b7 100644
--- a/libavfilter/af_amerge.c
+++ b/libavfilter/af_amerge.c
@@ -234,7 +234,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
             break;
     av_assert1(input_number < am->nb_inputs);
     if (ff_bufqueue_is_full(&am->in[input_number].queue)) {
-        av_log(ctx, AV_LOG_ERROR, "Buffer queue overflow\n");
         av_frame_free(&insamples);
         return AVERROR(ENOMEM);
     }
-- 
1.7.9.5



More information about the ffmpeg-devel mailing list