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:54 +0300
commit845579c6e2ee4c729a56c4daf819e5690d858570 (patch)
tree1f9113b3bd5932165fe2244f9c8742fd541f903f /libavfilter/vf_xmedian.c
parentad3b1fddb3d3000d423b8eafec2fb977be8cc248 (diff)
avfilter/vf_xmedian: Free inpads' names generically
This affects only the xmedian filter, not tmedian. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_xmedian.c')
-rw-r--r--libavfilter/vf_xmedian.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavfilter/vf_xmedian.c b/libavfilter/vf_xmedian.c
index f900720012..f8e4e4adb2 100644
--- a/libavfilter/vf_xmedian.c
+++ b/libavfilter/vf_xmedian.c
@@ -118,10 +118,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;
- }
}
return 0;
@@ -335,8 +333,6 @@ static av_cold void uninit(AVFilterContext *ctx)
ff_framesync_uninit(&s->fs);
- for (int i = 0; i < ctx->nb_inputs && !s->tmedian; i++)
- av_freep(&ctx->input_pads[i].name);
for (int i = 0; i < s->nb_frames && s->frames && s->tmedian; i++)
av_frame_free(&s->frames[i]);
av_freep(&s->frames);