summaryrefslogtreecommitdiff
path: root/libavfilter/af_amerge.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-03-31 00:23:43 +0100
committerStefano Sabatini <stefasab@gmail.com>2013-04-10 18:02:00 +0200
commite62fca11a84da8c2efef73f17e4a3127567011db (patch)
tree15cbfecb54013d27d915fb459e741ba08ca3d361 /libavfilter/af_amerge.c
parent270217908b8c65f6f00cc20bfac69d11ceaebd8a (diff)
lavfi/amerge: drop duplicated "Buffer queue overflow" message
The same message is shown already by the called function ff_bufqueue_is_full().
Diffstat (limited to 'libavfilter/af_amerge.c')
-rw-r--r--libavfilter/af_amerge.c1
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);
}