summaryrefslogtreecommitdiff
path: root/libavfilter/vf_fifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_fifo.c')
-rw-r--r--libavfilter/vf_fifo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_fifo.c b/libavfilter/vf_fifo.c
index 32199eddc8..46e93730ef 100644
--- a/libavfilter/vf_fifo.c
+++ b/libavfilter/vf_fifo.c
@@ -104,7 +104,7 @@ AVFilter avfilter_vf_fifo = {
.priv_size = sizeof(FifoContext),
- .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,
@@ -112,7 +112,7 @@ AVFilter avfilter_vf_fifo = {
.end_frame = end_frame,
.rej_perms = AV_PERM_REUSE2, },
{ .name = NULL}},
- .outputs = (AVFilterPad[]) {{ .name = "default",
+ .outputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.request_frame = request_frame, },
{ .name = NULL}},