mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
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:
parent
92afb43162
commit
6d16a96a95
@ -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…
Reference in New Issue
Block a user