avfilter/af_dynaudnorm: use already available pointer

Instead of dereferencing same thing again.
This commit is contained in:
Paul B Mahol 2020-01-05 10:22:57 +01:00
parent 1187dbb7e9
commit e26d66daaa
1 changed files with 1 additions and 1 deletions

View File

@ -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])) {