summaryrefslogtreecommitdiff
path: root/libavfilter/vf_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_null.c')
-rw-r--r--libavfilter/vf_null.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_null.c b/libavfilter/vf_null.c
index 989cd86fc1..5718ee0c1d 100644
--- a/libavfilter/vf_null.c
+++ b/libavfilter/vf_null.c
@@ -29,14 +29,14 @@ AVFilter avfilter_vf_null = {
.priv_size = 0,
- .inputs = (AVFilterPad[]) {{ .name = "default",
+ .inputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = avfilter_null_get_video_buffer,
.start_frame = avfilter_null_start_frame,
.end_frame = avfilter_null_end_frame },
{ .name = NULL}},
- .outputs = (AVFilterPad[]) {{ .name = "default",
+ .outputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO, },
{ .name = NULL}},
};