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>
This commit is contained in:
Andreas Rheinhardt 2024-02-19 23:35:52 +01:00
parent 58ffe0db4d
commit e2afcb8242
1 changed files with 1 additions and 0 deletions

View File

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