summaryrefslogtreecommitdiff
path: root/libavfilter/vf_maskedminmax.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-10 22:53:01 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-19 04:31:13 +0200
commit31adb960b700abe516b8ba86d02511611f2a7432 (patch)
tree2d4b3dd895fc7d7a59e3127398e49e02b05dc26e /libavfilter/vf_maskedminmax.c
parent412d645ba104c7d25601f082ec9b22cc097799b2 (diff)
avfilter/vf_maskedminmax: Deduplicate AVClasses
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_maskedminmax.c')
-rw-r--r--libavfilter/vf_maskedminmax.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/libavfilter/vf_maskedminmax.c b/libavfilter/vf_maskedminmax.c
index f0c499a0d5..6c7f6de211 100644
--- a/libavfilter/vf_maskedminmax.c
+++ b/libavfilter/vf_maskedminmax.c
@@ -323,13 +323,12 @@ static const AVFilterPad maskedminmax_outputs[] = {
},
};
-#define maskedmin_options maskedminmax_options
-AVFILTER_DEFINE_CLASS(maskedmin);
+AVFILTER_DEFINE_CLASS_EXT(maskedminmax, "masked(min|max)", maskedminmax_options);
const AVFilter ff_vf_maskedmin = {
.name = "maskedmin",
.description = NULL_IF_CONFIG_SMALL("Apply filtering with minimum difference of two streams."),
- .priv_class = &maskedmin_class,
+ .priv_class = &maskedminmax_class,
.priv_size = sizeof(MaskedMinMaxContext),
.init = maskedmin_init,
.uninit = uninit,
@@ -341,13 +340,10 @@ const AVFilter ff_vf_maskedmin = {
.process_command = ff_filter_process_command,
};
-#define maskedmax_options maskedminmax_options
-AVFILTER_DEFINE_CLASS(maskedmax);
-
const AVFilter ff_vf_maskedmax = {
.name = "maskedmax",
.description = NULL_IF_CONFIG_SMALL("Apply filtering with maximum difference of two streams."),
- .priv_class = &maskedmax_class,
+ .priv_class = &maskedminmax_class,
.priv_size = sizeof(MaskedMinMaxContext),
.uninit = uninit,
.activate = activate,