summaryrefslogtreecommitdiff
path: root/libavfilter/vf_split.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_split.c')
-rw-r--r--libavfilter/vf_split.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_split.c b/libavfilter/vf_split.c
index cbebf264fa..ee46ad08c1 100644
--- a/libavfilter/vf_split.c
+++ b/libavfilter/vf_split.c
@@ -51,14 +51,14 @@ AVFilter avfilter_vf_split = {
.name = "split",
.description = NULL_IF_CONFIG_SMALL("Pass on the input to two outputs."),
- .inputs = (AVFilterPad[]) {{ .name = "default",
+ .inputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer= avfilter_null_get_video_buffer,
.start_frame = start_frame,
.draw_slice = draw_slice,
.end_frame = end_frame, },
{ .name = NULL}},
- .outputs = (AVFilterPad[]) {{ .name = "output1",
+ .outputs = (const AVFilterPad[]) {{ .name = "output1",
.type = AVMEDIA_TYPE_VIDEO, },
{ .name = "output2",
.type = AVMEDIA_TYPE_VIDEO, },