Commit 3b580f9d authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_maskfun: fix memleak

Fixes #8305
parent 8e30514c
......@@ -248,6 +248,13 @@ static int config_input(AVFilterLink *inlink)
return 0;
}
static av_cold void uninit(AVFilterContext *ctx)
{
MaskFunContext *s = ctx->priv;
av_frame_free(&s->empty);
}
static const AVFilterPad maskfun_inputs[] = {
{
.name = "default",
......@@ -272,6 +279,7 @@ AVFilter ff_vf_maskfun = {
.description = NULL_IF_CONFIG_SMALL("Create Mask."),
.priv_size = sizeof(MaskFunContext),
.query_formats = query_formats,
.uninit = uninit,
.inputs = maskfun_inputs,
.outputs = maskfun_outputs,
.priv_class = &maskfun_class,
......
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