summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2015-02-28 10:37:36 +0100
committerClément Bœsch <u@pkh.me>2015-03-02 21:27:21 +0100
commitf5cbb2c55e19340ba5257a9c7d33d3d4d2880263 (patch)
treeb399e4f905df78ba28095fa9266f66106413e3b3 /libavfilter
parent17cb05fe063482b0113682af1466f8cb64cf8388 (diff)
avfilter/vf_tblend: use av_frame_free for freeing an AVFrame
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_blend.c2
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);