summaryrefslogtreecommitdiff
path: root/libavfilter/f_interleave.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-11 22:02:44 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-22 16:13:59 +0200
commitb8e31568dfee086e068b1148e62d42682edf9041 (patch)
treebcc53789a619bb50a9f0d2dd343bf0065e2f3c1a /libavfilter/f_interleave.c
parentfbfcb012aca8259dd1c03ce3bf3aff1878b630e6 (diff)
avfilter/f_interleave: Free inpads' names generically
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/f_interleave.c')
-rw-r--r--libavfilter/f_interleave.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/libavfilter/f_interleave.c b/libavfilter/f_interleave.c
index d0c94abbce..b60e89762f 100644
--- a/libavfilter/f_interleave.c
+++ b/libavfilter/f_interleave.c
@@ -173,21 +173,13 @@ static av_cold int init(AVFilterContext *ctx)
default:
av_assert0(0);
}
- if ((ret = ff_append_inpad(ctx, &inpad)) < 0) {
- av_freep(&inpad.name);
+ if ((ret = ff_append_inpad_free_name(ctx, &inpad)) < 0)
return ret;
- }
}
return 0;
}
-static av_cold void uninit(AVFilterContext *ctx)
-{
- for (int i = 0; i < ctx->nb_inputs; i++)
- av_freep(&ctx->input_pads[i].name);
-}
-
static int config_output(AVFilterLink *outlink)
{
AVFilterContext *ctx = outlink->src;
@@ -242,7 +234,6 @@ const AVFilter ff_vf_interleave = {
.description = NULL_IF_CONFIG_SMALL("Temporally interleave video inputs."),
.priv_size = sizeof(InterleaveContext),
.init = init,
- .uninit = uninit,
.activate = activate,
FILTER_OUTPUTS(interleave_outputs),
.priv_class = &interleave_class,
@@ -269,7 +260,6 @@ const AVFilter ff_af_ainterleave = {
.description = NULL_IF_CONFIG_SMALL("Temporally interleave audio inputs."),
.priv_size = sizeof(InterleaveContext),
.init = init,
- .uninit = uninit,
.activate = activate,
FILTER_OUTPUTS(ainterleave_outputs),
.priv_class = &ainterleave_class,