summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-10 22:40:20 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-19 04:28:03 +0200
commit57f6c23f299a138d74a84371f3523fb6d25ae92c (patch)
treed1a5cf228b3764c2e6b15ba11fbfd375d3857a85 /libavfilter
parentbb1ef872a3c364eca3f8d4f624161e7a66932de9 (diff)
avfilter/vf_format: Deduplicate AVClasses
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_format.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/libavfilter/vf_format.c b/libavfilter/vf_format.c
index b34675b8e0..0a5c739db6 100644
--- a/libavfilter/vf_format.c
+++ b/libavfilter/vf_format.c
@@ -140,10 +140,9 @@ static const AVOption options[] = {
{ NULL }
};
-#if CONFIG_FORMAT_FILTER
+AVFILTER_DEFINE_CLASS_EXT(format, "(no)format", options);
-#define format_options options
-AVFILTER_DEFINE_CLASS(format);
+#if CONFIG_FORMAT_FILTER
static const AVFilterPad avfilter_vf_format_inputs[] = {
{
@@ -179,9 +178,6 @@ const AVFilter ff_vf_format = {
#if CONFIG_NOFORMAT_FILTER
-#define noformat_options options
-AVFILTER_DEFINE_CLASS(noformat);
-
static const AVFilterPad avfilter_vf_noformat_inputs[] = {
{
.name = "default",
@@ -200,6 +196,7 @@ static const AVFilterPad avfilter_vf_noformat_outputs[] = {
const AVFilter ff_vf_noformat = {
.name = "noformat",
.description = NULL_IF_CONFIG_SMALL("Force libavfilter not to use any of the specified pixel formats for the input to the next filter."),
+ .priv_class = &format_class,
.init = init,
.uninit = uninit,
@@ -207,7 +204,6 @@ const AVFilter ff_vf_noformat = {
.query_formats = query_formats,
.priv_size = sizeof(FormatContext),
- .priv_class = &noformat_class,
FILTER_INPUTS(avfilter_vf_noformat_inputs),
FILTER_OUTPUTS(avfilter_vf_noformat_outputs),