avfilter/af_biquads: fix possible leak on error

Recently introduced.
This commit is contained in:
Paul B Mahol 2022-03-15 16:21:18 +01:00
parent ac7dc20a5d
commit 93a076db70

View File

@ -875,8 +875,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
return ff_filter_frame(outlink, buf);
ret = av_channel_layout_copy(&s->ch_layout, &inlink->ch_layout);
if (ret < 0)
if (ret < 0) {
av_frame_free(&buf);
return ret;
}
if (strcmp(s->ch_layout_str, "all"))
av_channel_layout_from_string(&s->ch_layout,
s->ch_layout_str);