Browse Source

lavfi/amerge: drop duplicated "Buffer queue overflow" message

The same message is shown already by the called function
ff_bufqueue_is_full().
tags/n2.0
Stefano Sabatini 12 years ago
parent
commit
e62fca11a8
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      libavfilter/af_amerge.c

+ 0
- 1
libavfilter/af_amerge.c View File

@@ -234,7 +234,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
break; break;
av_assert1(input_number < am->nb_inputs); av_assert1(input_number < am->nb_inputs);
if (ff_bufqueue_is_full(&am->in[input_number].queue)) { if (ff_bufqueue_is_full(&am->in[input_number].queue)) {
av_log(ctx, AV_LOG_ERROR, "Buffer queue overflow\n");
av_frame_free(&insamples); av_frame_free(&insamples);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }


Loading…
Cancel
Save