diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-03-31 00:23:43 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-04-10 18:02:00 +0200 |
commit | e62fca11a84da8c2efef73f17e4a3127567011db (patch) | |
tree | 15cbfecb54013d27d915fb459e741ba08ca3d361 | |
parent | 270217908b8c65f6f00cc20bfac69d11ceaebd8a (diff) | |
download | ffmpeg-e62fca11a84da8c2efef73f17e4a3127567011db.tar.gz |
lavfi/amerge: drop duplicated "Buffer queue overflow" message
The same message is shown already by the called function
ff_bufqueue_is_full().
-rw-r--r-- | libavfilter/af_amerge.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/af_amerge.c b/libavfilter/af_amerge.c index e9a7fc91af..4a7b0b724c 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); } |