mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/vf_tblend: use av_frame_free for freeing an AVFrame
This commit is contained in:
parent
17cb05fe06
commit
f5cbb2c55e
@ -379,7 +379,7 @@ static av_cold void uninit(AVFilterContext *ctx)
|
||||
int i;
|
||||
|
||||
ff_dualinput_uninit(&b->dinput);
|
||||
av_freep(&b->prev_frame);
|
||||
av_frame_free(&b->prev_frame);
|
||||
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(b->params); i++)
|
||||
av_expr_free(b->params[i].e);
|
||||
|
Loading…
Reference in New Issue
Block a user