]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_copy.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / vf_copy.c
index 480ebcc034f3fe8c650302a411ad5d7a35e32194..d253906786cfc314c3ef21fb9ffa4a2e034e69a0 100644 (file)
@@ -27,14 +27,14 @@ AVFilter avfilter_vf_copy = {
     .name      = "copy",
     .description = NULL_IF_CONFIG_SMALL("Copy the input video unchanged to the output."),
 
-    .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,
                                     .rej_perms        = ~0 },
                                   { .name = NULL}},
-    .outputs   = (AVFilterPad[]) {{ .name             = "default",
+    .outputs   = (const AVFilterPad[]) {{ .name       = "default",
                                     .type             = AVMEDIA_TYPE_VIDEO, },
                                   { .name = NULL}},
 };