diff flashsv.c @ 10146:38cfe222e1a4 libavcodec

Mark all pix_fmts and supported_framerates compound literals as const. Makes no difference for gcc but at least icc can put them in .rodata then.
author reimar
date Sun, 06 Sep 2009 16:09:21 +0000
parents 0dce4fe6e6f3
children 6110cd97dc8e
line wrap: on
line diff
--- a/flashsv.c	Sun Sep 06 09:15:07 2009 +0000
+++ b/flashsv.c	Sun Sep 06 16:09:21 2009 +0000
@@ -256,6 +256,6 @@
     flashsv_decode_end,
     flashsv_decode_frame,
     CODEC_CAP_DR1,
-    .pix_fmts = (enum PixelFormat[]){PIX_FMT_BGR24, PIX_FMT_NONE},
+    .pix_fmts = (const enum PixelFormat[]){PIX_FMT_BGR24, PIX_FMT_NONE},
     .long_name = NULL_IF_CONFIG_SMALL("Flash Screen Video v1"),
 };