Browse Source

avfilter/vf_tblend: use av_frame_free for freeing an AVFrame

tags/n2.6
Clément Bœsch 11 years ago
parent
commit
f5cbb2c55e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_blend.c

+ 1
- 1
libavfilter/vf_blend.c 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);


Loading…
Cancel
Save