Commit 81172b5e authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_dynaudnorm: fix previous commit

We still need to analyze frame for amplification at EOF.
parent ed02563c
......@@ -686,14 +686,14 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
ret = ff_filter_frame(outlink, out);
}
if (!s->eof) {
av_frame_make_writable(in);
av_frame_make_writable(in);
if (!s->eof)
cqueue_enqueue(s->is_enabled, !ctx->is_disabled);
analyze_frame(s, in);
analyze_frame(s, in);
if (!s->eof)
ff_bufqueue_add(ctx, &s->queue, in);
} else {
else
av_frame_free(&in);
}
return ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment