[FFmpeg-devel] [PATCH] avfilter/af_pan: Uninitialize channel layout

Andreas Rheinhardt andreas.rheinhardt at outlook.com
Tue Feb 20 15:54:37 EET 2024


Andreas Rheinhardt:
> Fixes a leak in the mov-mp4-pcm-float FATE test.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> ---
>  libavfilter/af_pan.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/libavfilter/af_pan.c b/libavfilter/af_pan.c
> index cfed9f146a..d8431a51d9 100644
> --- a/libavfilter/af_pan.c
> +++ b/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)

Will apply tonight unless there are objections.

- Andreas



More information about the ffmpeg-devel mailing list