Browse Source

Add a comment about an intentional misspelling to the id3v1 tags.

tags/n1.1
Carl Eugen Hoyos 12 years ago
parent
commit
155cdc1d05
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavformat/id3v1.c

+ 2
- 1
libavformat/id3v1.c View File

@@ -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",


Loading…
Cancel
Save