diff options
author | Max Kellermann <max@duempel.org> | 2008-11-01 14:55:23 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-01 14:55:23 +0100 |
commit | 4c1b96c30721f78d9251a8074d4d516c37e755b9 (patch) | |
tree | c1473bea5ff2fb12560c22a2764189adba96b83b /src/decoder/ffmpeg_plugin.c | |
parent | 0b614fbaae9089d6d1ce981735a51f2a5b3cbf65 (diff) | |
download | mpd-4c1b96c30721f78d9251a8074d4d516c37e755b9.tar.gz mpd-4c1b96c30721f78d9251a8074d4d516c37e755b9.tar.xz mpd-4c1b96c30721f78d9251a8074d4d516c37e755b9.zip |
decoder: make the suffixes and mime_types arrays really const
The strings were constant, but the pointers weren't. C syntax is
somewhat tricky..
Diffstat (limited to '')
-rw-r--r-- | src/decoder/ffmpeg_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/ffmpeg_plugin.c b/src/decoder/ffmpeg_plugin.c index e5bd8515b..6f7b2e1e1 100644 --- a/src/decoder/ffmpeg_plugin.c +++ b/src/decoder/ffmpeg_plugin.c @@ -359,14 +359,14 @@ static struct tag *ffmpeg_tag(const char *file) * only that files */ -static const char *ffmpeg_Suffixes[] = { +static const char *const ffmpeg_Suffixes[] = { "wma", "asf", "wmv", "mpeg", "mpg", "avi", "vob", "mov", "qt", "swf", "rm", "swf", "mp1", "mp2", "mp3", "mp4", "m4a", "flac", "ogg", "wav", "au", "aiff", "aif", "ac3", "aac", "mpc", NULL }; //not sure if this is correct... -static const char *ffmpeg_Mimetypes[] = { +static const char *const ffmpeg_Mimetypes[] = { "video/x-ms-asf", "audio/x-ms-wma", "audio/x-ms-wax", |