avfilter/vf_tblend: use av_frame_free for freeing an AVFrame

This commit is contained in:
Clément Bœsch 2015-02-28 10:37:36 +01:00
parent 17cb05fe06
commit f5cbb2c55e

View File

@ -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);