summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-06-15 01:36:12 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-06-15 01:36:12 +0200
commit9e2f448d68d9df7ad79d968db315c6b0cc79c4df (patch)
tree688b6a501e421b564662291eecd256d49af90eee
parentb19313218c32fa9446d474cbddb11c0776868cd3 (diff)
downloadffmpeg-9e2f448d68d9df7ad79d968db315c6b0cc79c4df.tar.gz
vf_mp: Fix large memleak.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavfilter/vf_mp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_mp.c b/libavfilter/vf_mp.c
index 01a8f064a2..0642b44f00 100644
--- a/libavfilter/vf_mp.c
+++ b/libavfilter/vf_mp.c
@@ -882,7 +882,7 @@ static void end_frame(AVFilterLink *inlink)
}
free_mp_image(mpi);
-// avfilter_unref_buffer(inpic);
+ avfilter_unref_buffer(inpic);
}
AVFilter avfilter_vf_mp = {