diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-24 13:12:41 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-24 13:12:41 +0000 |
commit | ba18b99ffa8f23a761afd8097b58addc6304c86d (patch) | |
tree | 00868387f89b3fbfc4492942fc68036bc9b2dbff /libavformat/matroskadec.c | |
parent | 1bef65f4fe3cd85a7ea99393da93589dc834c7f5 (diff) | |
download | ffmpeg-ba18b99ffa8f23a761afd8097b58addc6304c86d.tar.gz |
matroskadec: make aac_profiles array const
Originally committed as revision 14943 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r-- | libavformat/matroskadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 8405e25c40..fd9652fcdb 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -1004,7 +1004,7 @@ static void matroska_execute_seekhead(MatroskaDemuxContext *matroska) static int matroska_aac_profile(char *codec_id) { - static const char *aac_profiles[] = { "MAIN", "LC", "SSR" }; + static const char * const aac_profiles[] = { "MAIN", "LC", "SSR" }; int profile; for (profile=0; profile<ARRAY_SIZE(aac_profiles); profile++) |