Commit 6f892358 authored by aurel's avatar aurel

matroskadec: make aac_profiles array const


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14943 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 07fa0171
......@@ -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++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment