diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-11-29 02:21:16 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-11-29 02:21:16 +0100 |
commit | 502ecc9cc2322687f3dec51f72a4b8c5d70a169f (patch) | |
tree | 35a7408f68df44fac2f7c9cc95973c73754e4562 | |
parent | 269cd07702dea0bb1831c465fd49890287c91b1a (diff) | |
download | ffmpeg-502ecc9cc2322687f3dec51f72a4b8c5d70a169f.tar.gz |
lavfi/colormatrix: 10l fix forgotten buffer unref.
-rw-r--r-- | libavfilter/vf_colormatrix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c index ff7b9e0040..571b9d4597 100644 --- a/libavfilter/vf_colormatrix.c +++ b/libavfilter/vf_colormatrix.c @@ -353,6 +353,7 @@ static int filter_frame(AVFilterLink *link, AVFilterBufferRef *in) else process_frame_uyvy422(color, out, in); + avfilter_unref_bufferp(&in); return ff_filter_frame(outlink, out); } |