avfilter/af_join: fix leak on error
This commit is contained in:
parent
ffd275a7e0
commit
2de30e7f8c
@ -531,7 +531,7 @@ FF_DISABLE_DEPRECATION_WARNINGS
|
|||||||
FF_ENABLE_DEPRECATION_WARNINGS
|
FF_ENABLE_DEPRECATION_WARNINGS
|
||||||
#endif
|
#endif
|
||||||
if ((ret = av_channel_layout_copy(&frame->ch_layout, &outlink->ch_layout)) < 0)
|
if ((ret = av_channel_layout_copy(&frame->ch_layout, &outlink->ch_layout)) < 0)
|
||||||
return ret;
|
goto fail;
|
||||||
frame->sample_rate = outlink->sample_rate;
|
frame->sample_rate = outlink->sample_rate;
|
||||||
frame->format = outlink->format;
|
frame->format = outlink->format;
|
||||||
frame->pts = s->input_frames[0]->pts;
|
frame->pts = s->input_frames[0]->pts;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user