You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/af_dynaudnorm: fix previous commit
We still need to analyze frame for amplification at EOF.
This commit is contained in:
@@ -686,14 +686,14 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
|||||||
ret = ff_filter_frame(outlink, out);
|
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);
|
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);
|
ff_bufqueue_add(ctx, &s->queue, in);
|
||||||
} else {
|
else
|
||||||
av_frame_free(&in);
|
av_frame_free(&in);
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user