]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_hflip.c
lavfi: add audio silencedetect filter.
[ffmpeg] / libavfilter / vf_hflip.c
index 9b995a989456d6700e3e718ba66ce57c3a38761d..f1418ca8b69b501694e1ae0e3def43484c61aab4 100644 (file)
@@ -150,13 +150,13 @@ AVFilter avfilter_vf_hflip = {
     .priv_size = sizeof(FlipContext),
     .query_formats = query_formats,
 
-    .inputs    = (AVFilterPad[]) {{ .name            = "default",
+    .inputs    = (const AVFilterPad[]) {{ .name      = "default",
                                     .type            = AVMEDIA_TYPE_VIDEO,
                                     .draw_slice      = draw_slice,
                                     .config_props    = config_props,
                                     .min_perms       = AV_PERM_READ, },
                                   { .name = NULL}},
-    .outputs   = (AVFilterPad[]) {{ .name            = "default",
+    .outputs   = (const AVFilterPad[]) {{ .name      = "default",
                                     .type            = AVMEDIA_TYPE_VIDEO, },
                                   { .name = NULL}},
 };