diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-01-26 09:43:51 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-01-26 09:43:51 +0000 |
commit | 7ccd625a46c5a5a2f1cd6a20d7a6bf8137c7191c (patch) | |
tree | fb9a5d957163bc20276f5b1ae63bc73b752440e9 | |
parent | f4f061932754f54f5db6fd8b0ad596a6b839cf3a (diff) | |
download | ffmpeg-7ccd625a46c5a5a2f1cd6a20d7a6bf8137c7191c.tar.gz |
avfilter/vf_eq: fix leak of input frame
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_eq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_eq.c b/libavfilter/vf_eq.c index 60822dfa24..0c2f0cef4e 100644 --- a/libavfilter/vf_eq.c +++ b/libavfilter/vf_eq.c @@ -214,6 +214,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) in->data[i], in->linesize[i], w, h); } + av_frame_free(&in); return ff_filter_frame(outlink, out); } static const AVFilterPad eq_inputs[] = { |