Browse Source

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>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
6d16a96a95
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_boxblur.c

+ 1
- 1
libavfilter/vf_boxblur.c 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 = {


Loading…
Cancel
Save