avfilter/af_pan: Uninitialize channel layout

Fixes a leak in the mov-mp4-pcm-float FATE test.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
release/7.0
Andreas Rheinhardt 11 months ago
parent 58ffe0db4d
commit e2afcb8242
  1. 1
      libavfilter/af_pan.c

@ -399,6 +399,7 @@ static av_cold void uninit(AVFilterContext *ctx)
{
PanContext *pan = ctx->priv;
swr_free(&pan->swr);
av_channel_layout_uninit(&pan->out_channel_layout);
}
#define OFFSET(x) offsetof(PanContext, x)

Loading…
Cancel
Save