diff vocdec.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 9cff515fd4c6
children 1d3d17de20ba
line wrap: on
line diff
--- a/vocdec.c	Sun Aug 24 16:22:40 2008 +0000
+++ b/vocdec.c	Sun Aug 24 16:51:50 2008 +0000
@@ -141,5 +141,5 @@
     voc_probe,
     voc_read_header,
     voc_read_packet,
-    .codec_tag=(const AVCodecTag*[]){ff_voc_codec_tags, 0},
+    .codec_tag=(const AVCodecTag* const []){ff_voc_codec_tags, 0},
 };