mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
58ffe0db4d
commit
e2afcb8242
|
@ -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…
Reference in New Issue