diff options
author | Clément Bœsch <u@pkh.me> | 2015-02-28 10:37:36 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-03-02 21:27:21 +0100 |
commit | f5cbb2c55e19340ba5257a9c7d33d3d4d2880263 (patch) | |
tree | b399e4f905df78ba28095fa9266f66106413e3b3 | |
parent | 17cb05fe063482b0113682af1466f8cb64cf8388 (diff) | |
download | ffmpeg-f5cbb2c55e19340ba5257a9c7d33d3d4d2880263.tar.gz |
avfilter/vf_tblend: use av_frame_free for freeing an AVFrame
-rw-r--r-- | libavfilter/vf_blend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c index a29cabcdc8..d232457714 100644 --- a/libavfilter/vf_blend.c +++ b/libavfilter/vf_blend.c @@ -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); |