Commit e26d66da authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_dynaudnorm: use already available pointer

Instead of dereferencing same thing again.
parent 1187dbb7
......@@ -701,7 +701,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
{
AVFilterContext *ctx = inlink->dst;
DynamicAudioNormalizerContext *s = ctx->priv;
AVFilterLink *outlink = inlink->dst->outputs[0];
AVFilterLink *outlink = ctx->outputs[0];
int ret = 1;
if (!cqueue_empty(s->gain_history_smoothed[0])) {
......
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