]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/sink_buffer.c
vsrc_mandelbrot: increase zyklus array size so that optimizations can write a bit...
[ffmpeg] / libavfilter / sink_buffer.c
index 1c4996708a616e87e4e690b18d351ce62a6ea5b7..bfbec7d555d4a6620034ce09f85b2666d397d02b 100644 (file)
@@ -188,12 +188,12 @@ AVFilter avfilter_vsink_buffersink = {
 
     .query_formats = vsink_query_formats,
 
-    .inputs    = (AVFilterPad[]) {{ .name          = "default",
+    .inputs    = (const AVFilterPad[]) {{ .name    = "default",
                                     .type          = AVMEDIA_TYPE_VIDEO,
                                     .end_frame     = end_frame,
                                     .min_perms     = AV_PERM_READ, },
                                   { .name = NULL }},
-    .outputs   = (AVFilterPad[]) {{ .name = NULL }},
+    .outputs   = (const AVFilterPad[]) {{ .name = NULL }},
 };
 
 #endif /* CONFIG_BUFFERSINK_FILTER */
@@ -252,12 +252,12 @@ AVFilter avfilter_asink_abuffersink = {
     .priv_size = sizeof(BufferSinkContext),
     .query_formats = asink_query_formats,
 
-    .inputs    = (AVFilterPad[]) {{ .name           = "default",
+    .inputs    = (const AVFilterPad[]) {{ .name     = "default",
                                     .type           = AVMEDIA_TYPE_AUDIO,
                                     .filter_samples = filter_samples,
                                     .min_perms      = AV_PERM_READ, },
                                   { .name = NULL }},
-    .outputs   = (AVFilterPad[]) {{ .name = NULL }},
+    .outputs   = (const AVFilterPad[]) {{ .name = NULL }},
 };
 
 #endif /* CONFIG_ABUFFERSINK_FILTER */