Commit f5cbb2c5 authored by Clément Bœsch's avatar Clément Bœsch

avfilter/vf_tblend: use av_frame_free for freeing an AVFrame

parent 17cb05fe
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment