avfilter/vf_eq: fix leak of input frame

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2015-01-26 09:43:51 +00:00
parent f4f0619327
commit 7ccd625a46

View File

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