[FFmpeg-cvslog] lavfi/amerge: drop duplicated "Buffer queue overflow" message
Stefano Sabatini
git at videolan.org
Wed Apr 10 18:03:04 CEST 2013
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Mar 31 00:23:43 2013 +0100| [e62fca11a84da8c2efef73f17e4a3127567011db] | committer: Stefano Sabatini
lavfi/amerge: drop duplicated "Buffer queue overflow" message
The same message is shown already by the called function
ff_bufqueue_is_full().
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e62fca11a84da8c2efef73f17e4a3127567011db
---
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);
}
More information about the ffmpeg-cvslog
mailing list