[FFmpeg-cvslog] avfilter/vf_maskedminmax: Simplify init

Andreas Rheinhardt git at videolan.org
Mon Sep 13 17:24:23 EEST 2021


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Fri Sep 10 19:44:26 2021 +0200| [142f41a0600317654d54ba2cdca9754a522c8819] | committer: Andreas Rheinhardt

avfilter/vf_maskedminmax: Simplify init

Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=142f41a0600317654d54ba2cdca9754a522c8819
---

 libavfilter/vf_maskedminmax.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/libavfilter/vf_maskedminmax.c b/libavfilter/vf_maskedminmax.c
index afac145e2a..f0c499a0d5 100644
--- a/libavfilter/vf_maskedminmax.c
+++ b/libavfilter/vf_maskedminmax.c
@@ -54,11 +54,11 @@ static const AVOption maskedminmax_options[] = {
     { NULL }
 };
 
-static av_cold int init(AVFilterContext *ctx)
+static av_cold int maskedmin_init(AVFilterContext *ctx)
 {
     MaskedMinMaxContext *s = ctx->priv;
 
-    s->maskedmin = !strcmp(ctx->filter->name, "maskedmin");
+    s->maskedmin = 1;
 
     return 0;
 }
@@ -331,7 +331,7 @@ const AVFilter ff_vf_maskedmin = {
     .description   = NULL_IF_CONFIG_SMALL("Apply filtering with minimum difference of two streams."),
     .priv_class    = &maskedmin_class,
     .priv_size     = sizeof(MaskedMinMaxContext),
-    .init          = init,
+    .init          = maskedmin_init,
     .uninit        = uninit,
     .activate      = activate,
     .query_formats = query_formats,
@@ -349,7 +349,6 @@ const AVFilter ff_vf_maskedmax = {
     .description   = NULL_IF_CONFIG_SMALL("Apply filtering with maximum difference of two streams."),
     .priv_class    = &maskedmax_class,
     .priv_size     = sizeof(MaskedMinMaxContext),
-    .init          = init,
     .uninit        = uninit,
     .activate      = activate,
     .query_formats = query_formats,



More information about the ffmpeg-cvslog mailing list