Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-11 23:02:44 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-22 17:15:44 +0300
commit07aacf5ea9467320fb4999293f7fa08b71c07300 (patch)
tree115a0e43765dbcd5490cc1f1007f90982fd92535 /libavfilter/vf_signature.c
parent65884bd81fe71fd4f29f3e7495f3970e482e7904 (diff)
avfilter/vf_signature: Free inpads' names generically
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_signature.c')
-rw-r--r--libavfilter/vf_signature.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavfilter/vf_signature.c b/libavfilter/vf_signature.c
index b8339d7442..784869a7ae 100644
--- a/libavfilter/vf_signature.c
+++ b/libavfilter/vf_signature.c
@@ -664,10 +664,8 @@ static av_cold int init(AVFilterContext *ctx)
if (!pad.name)
return AVERROR(ENOMEM);
- if ((ret = ff_append_inpad(ctx, &pad)) < 0) {
- av_freep(&pad.name);
+ if ((ret = ff_append_inpad_free_name(ctx, &pad)) < 0)
return ret;
- }
sc = &(sic->streamcontexts[i]);
@@ -730,8 +728,6 @@ static av_cold void uninit(AVFilterContext *ctx)
}
av_freep(&sic->streamcontexts);
}
- for (unsigned i = 0; i < ctx->nb_inputs; i++)
- av_freep(&ctx->input_pads[i].name);
}
static int config_output(AVFilterLink *outlink)