diff nutenc.c @ 3766:f062deeedb8d libavformat

Change codec_tag type from const struct AVCodecTag ** to const struct AVCodecTag * const *
author reimar
date Sun, 24 Aug 2008 16:51:50 +0000
parents 27537074f2a9
children a5c615b9d8ec
line wrap: on
line diff
--- a/nutenc.c	Sun Aug 24 16:22:40 2008 +0000
+++ b/nutenc.c	Sun Aug 24 16:51:50 2008 +0000
@@ -820,5 +820,5 @@
     write_packet,
     write_trailer,
     .flags = AVFMT_GLOBALHEADER,
-    .codec_tag= (const AVCodecTag*[]){codec_bmp_tags, codec_wav_tags, ff_nut_subtitle_tags, 0},
+    .codec_tag= (const AVCodecTag* const []){codec_bmp_tags, codec_wav_tags, ff_nut_subtitle_tags, 0},
 };