Make all mp_*_taglists const.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29663 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-09-08 21:42:51 +00:00
parent f443f004c9
commit 1ea5135f6f
1 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ static const AVCodecTag mp_wav_tags[] = {
{ 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 @@ static const AVCodecTag mp_codecid_override_tags[] = {
{ 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 @@ static const AVCodecTag mp_bmp_tags[] = {
{ 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};