avfilter/vf_mix: Free inpads' names generically
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -125,12 +125,10 @@ static av_cold int init(AVFilterContext *ctx)
|
|||||||
if (!pad.name)
|
if (!pad.name)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
if ((ret = ff_append_inpad(ctx, &pad)) < 0) {
|
if ((ret = ff_append_inpad_free_name(ctx, &pad)) < 0)
|
||||||
av_freep(&pad.name);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return parse_weights(ctx);
|
return parse_weights(ctx);
|
||||||
}
|
}
|
||||||
@@ -304,10 +302,7 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||||||
ff_framesync_uninit(&s->fs);
|
ff_framesync_uninit(&s->fs);
|
||||||
av_freep(&s->weights);
|
av_freep(&s->weights);
|
||||||
|
|
||||||
if (!s->tmix) {
|
if (s->tmix) {
|
||||||
for (i = 0; i < ctx->nb_inputs; i++)
|
|
||||||
av_freep(&ctx->input_pads[i].name);
|
|
||||||
} else {
|
|
||||||
for (i = 0; i < s->nb_frames && s->frames; i++)
|
for (i = 0; i < s->nb_frames && s->frames; i++)
|
||||||
av_frame_free(&s->frames[i]);
|
av_frame_free(&s->frames[i]);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user