summaryrefslogtreecommitdiff
path: root/libavfilter/vf_shuffleframes.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_shuffleframes.c')
-rw-r--r--libavfilter/vf_shuffleframes.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavfilter/vf_shuffleframes.c b/libavfilter/vf_shuffleframes.c
index cdc70f552e..14b90e6446 100644
--- a/libavfilter/vf_shuffleframes.c
+++ b/libavfilter/vf_shuffleframes.c
@@ -144,7 +144,6 @@ static const AVFilterPad shuffleframes_inputs[] = {
.type = AVMEDIA_TYPE_VIDEO,
.filter_frame = filter_frame,
},
- { NULL },
};
static const AVFilterPad shuffleframes_outputs[] = {
@@ -152,7 +151,6 @@ static const AVFilterPad shuffleframes_outputs[] = {
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
},
- { NULL },
};
const AVFilter ff_vf_shuffleframes = {
@@ -162,7 +160,7 @@ const AVFilter ff_vf_shuffleframes = {
.priv_class = &shuffleframes_class,
.init = init,
.uninit = uninit,
- .inputs = shuffleframes_inputs,
- .outputs = shuffleframes_outputs,
+ FILTER_INPUTS(shuffleframes_inputs),
+ FILTER_OUTPUTS(shuffleframes_outputs),
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
};