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: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-11-25 04:44:12 +01:00
parent 92afb43162
commit 6d16a96a95
1 changed files with 1 additions and 1 deletions

View File

@ -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 = {