changeset 29621:e3d04e77e1f3

Make all mp_*_taglists const.
author reimar
date Tue, 08 Sep 2009 21:42:51 +0000
parents 444fb626e0d3
children d5662ea3a5d0
files libmpdemux/mp_taglists.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/mp_taglists.c	Tue Sep 08 16:32:21 2009 +0000
+++ b/libmpdemux/mp_taglists.c	Tue Sep 08 21:42:51 2009 +0000
@@ -53,7 +53,7 @@
     { 0, 0 },
 };
 
-const struct AVCodecTag *mp_wav_taglists[] = {ff_codec_wav_tags, mp_wav_tags, 0};
+const struct AVCodecTag * const mp_wav_taglists[] = {ff_codec_wav_tags, mp_wav_tags, 0};
 
 static const AVCodecTag mp_codecid_override_tags[] = {
     { CODEC_ID_AAC,               MKTAG('M', 'P', '4', 'A')},
@@ -76,7 +76,7 @@
     { 0, 0 },
 };
 
-const struct AVCodecTag *mp_codecid_override_taglists[] =
+const struct AVCodecTag * const mp_codecid_override_taglists[] =
                         {mp_codecid_override_tags, 0};
 
 static const AVCodecTag mp_bmp_tags[] = {
@@ -108,5 +108,5 @@
     { 0, 0 },
 };
 
-const struct AVCodecTag *mp_bmp_taglists[] = {ff_codec_bmp_tags, mp_bmp_tags, 0};
+const struct AVCodecTag * const mp_bmp_taglists[] = {ff_codec_bmp_tags, mp_bmp_tags, 0};