avfilter/vignette: fix input frame memory leak.

Fixes Ticket #3642.
This commit is contained in:
Masa Utashiro 2014-05-16 06:31:56 +02:00 committed by Clément Bœsch
parent a9bf713d35
commit 491d602283
1 changed files with 1 additions and 0 deletions

View File

@ -268,6 +268,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
}
av_frame_free(&in);
return ff_filter_frame(outlink, out);
}