From ed034f6c595c188daacdb76abffb0bfd6d66ecb7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Sun, 6 Sep 2009 08:39:41 +0000 Subject: [PATCH] ff_id3v1_genre_str table should be const. Originally committed as revision 19781 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/id3v1.c | 2 +- libavformat/id3v1.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/id3v1.c b/libavformat/id3v1.c index 7281974..cf5cb95 100644 --- a/libavformat/id3v1.c +++ b/libavformat/id3v1.c @@ -22,7 +22,7 @@ #include "id3v1.h" #include "libavcodec/avcodec.h" -const char *ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1] = { +const char * const ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1] = { [0] = "Blues", [1] = "Classic Rock", [2] = "Country", diff --git a/libavformat/id3v1.h b/libavformat/id3v1.h index b5dcedc..206cab7 100644 --- a/libavformat/id3v1.h +++ b/libavformat/id3v1.h @@ -31,7 +31,7 @@ /** * ID3v1 genres */ -extern const char *ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1]; +extern const char * const ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1]; /** * Read an ID3v1 tag -- 2.7.4