Commit 6d16a96a authored by Michael Niedermayer's avatar Michael Niedermayer

vf_boxblur: fix memleak

As the filter uses the default start frame, the cleanup done by the
default end frame is needed.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 92afb431
......@@ -325,7 +325,7 @@ static void end_frame(AVFilterLink *inlink)
boxblur->temp);
avfilter_draw_slice(outlink, 0, inlink->h, 1);
avfilter_end_frame(outlink);
avfilter_default_end_frame(inlink);
}
AVFilter avfilter_vf_boxblur = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment