summaryrefslogtreecommitdiff
path: root/libavfilter/vf_showpalette.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_showpalette.c')
-rw-r--r--libavfilter/vf_showpalette.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavfilter/vf_showpalette.c b/libavfilter/vf_showpalette.c
index 2455af687c..569f5040d0 100644
--- a/libavfilter/vf_showpalette.c
+++ b/libavfilter/vf_showpalette.c
@@ -100,7 +100,6 @@ static const AVFilterPad showpalette_inputs[] = {
.type = AVMEDIA_TYPE_VIDEO,
.filter_frame = filter_frame,
},
- { NULL }
};
static const AVFilterPad showpalette_outputs[] = {
@@ -109,7 +108,6 @@ static const AVFilterPad showpalette_outputs[] = {
.type = AVMEDIA_TYPE_VIDEO,
.config_props = config_output,
},
- { NULL }
};
const AVFilter ff_vf_showpalette = {
@@ -117,7 +115,7 @@ const AVFilter ff_vf_showpalette = {
.description = NULL_IF_CONFIG_SMALL("Display frame palette."),
.priv_size = sizeof(ShowPaletteContext),
.query_formats = query_formats,
- .inputs = showpalette_inputs,
- .outputs = showpalette_outputs,
+ FILTER_INPUTS(showpalette_inputs),
+ FILTER_OUTPUTS(showpalette_outputs),
.priv_class = &showpalette_class,
};