avfilter/af_pan: fix leaks on error case

This commit is contained in:
Paul B Mahol 2023-05-10 13:45:07 +02:00
parent a4abe37fb5
commit ffd275a7e0
1 changed files with 4 additions and 1 deletions

View File

@ -385,8 +385,11 @@ FF_DISABLE_DEPRECATION_WARNINGS
outsamples->channels = outlink->ch_layout.nb_channels;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
if ((ret = av_channel_layout_copy(&outsamples->ch_layout, &outlink->ch_layout)) < 0)
if ((ret = av_channel_layout_copy(&outsamples->ch_layout, &outlink->ch_layout)) < 0) {
av_frame_free(&outsamples);
av_frame_free(&insamples);
return ret;
}
ret = ff_filter_frame(outlink, outsamples);
av_frame_free(&insamples);