diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-04 10:32:39 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-04 10:32:39 +0100 |
commit | 155cdc1d05e9a5e81e0557e4b23673cc18a34ee9 (patch) | |
tree | 85f809beb403614cea0380edb301055aeb915db6 | |
parent | 2284448775f044057b06763746afe310ca0ccff3 (diff) | |
download | ffmpeg-155cdc1d05e9a5e81e0557e4b23673cc18a34ee9.tar.gz |
Add a comment about an intentional misspelling to the id3v1 tags.
-rw-r--r-- | libavformat/id3v1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/id3v1.c b/libavformat/id3v1.c index 2d1e806920..d73adc713b 100644 --- a/libavformat/id3v1.c +++ b/libavformat/id3v1.c @@ -23,6 +23,7 @@ #include "libavcodec/avcodec.h" #include "libavutil/dict.h" +/* See Genre List at http://id3.org/id3v2.3.0 */ const char * const ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1] = { [0] = "Blues", [1] = "Classic Rock", @@ -91,7 +92,7 @@ const char * const ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1] = { [64] = "Native American", [65] = "Cabaret", [66] = "New Wave", - [67] = "Psychadelic", + [67] = "Psychadelic", /* sic, the misspelling is used in the specification */ [68] = "Rave", [69] = "Showtunes", [70] = "Trailer", |