Commit 7ccd625a authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_eq: fix leak of input frame

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent f4f06193
......@@ -214,6 +214,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
in->data[i], in->linesize[i], w, h);
}
av_frame_free(&in);
return ff_filter_frame(outlink, out);
}
static const AVFilterPad eq_inputs[] = {
......
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