1 /*
2 
3   ID3v1.1 genres + Winamp extensions
4 
5   copyright (c) 2003 squell <squell@alumina.nl>
6 
7   use, modification, copying and distribution of this software is permitted
8   under the conditions described in the file 'COPYING'.
9 
10 */
11 
12 #include "id3v1.h"
13 
14 const char *const ID3v1_genre[] = {
15 /*  1*/ "Blues",
16 /*  2*/ "Classic Rock",
17 /*  3*/ "Country",
18 /*  4*/ "Dance",
19 /*  5*/ "Disco",
20 /*  6*/ "Funk",
21 /*  7*/ "Grunge",
22 /*  8*/ "Hip-Hop",
23 /*  9*/ "Jazz",
24 /* 10*/ "Metal",
25 /* 11*/ "New Age",
26 /* 12*/ "Oldies",
27 /* 13*/ "Other",
28 /* 14*/ "Pop",
29 /* 15*/ "R&B",
30 /* 16*/ "Rap",
31 /* 17*/ "Reggae",
32 /* 18*/ "Rock",
33 /* 19*/ "Techno",
34 /* 20*/ "Industrial",
35 /* 21*/ "Alternative",
36 /* 22*/ "Ska",
37 /* 23*/ "Death Metal",
38 /* 24*/ "Pranks",
39 /* 25*/ "Soundtrack",
40 /* 26*/ "Euro-Techno",
41 /* 27*/ "Ambient",
42 /* 28*/ "Trip-Hop",
43 /* 29*/ "Vocal",
44 /* 30*/ "Jazz+Funk",
45 /* 31*/ "Fusion",
46 /* 32*/ "Trance",
47 /* 33*/ "Classical",
48 /* 34*/ "Instrumental",
49 /* 35*/ "Acid",
50 /* 36*/ "House",
51 /* 37*/ "Game",
52 /* 38*/ "Sound Clip",
53 /* 39*/ "Gospel",
54 /* 40*/ "Noise",
55 /* 41*/ "Alternative Rock",
56 /* 42*/ "Bass",
57 /* 43*/ "Soul",
58 /* 44*/ "Punk",
59 /* 45*/ "Space",
60 /* 46*/ "Meditative",
61 /* 47*/ "Instrumental Pop",
62 /* 48*/ "Instrumental Rock",
63 /* 49*/ "Ethnic",
64 /* 50*/ "Gothic",
65 /* 51*/ "Darkwave",
66 /* 52*/ "Techno-Industrial",
67 /* 53*/ "Electronic",
68 /* 54*/ "Pop-Folk",
69 /* 55*/ "Eurodance",
70 /* 56*/ "Dream",
71 /* 57*/ "Southern Rock",
72 /* 58*/ "Comedy",
73 /* 59*/ "Cult",
74 /* 60*/ "Gangsta",
75 /* 61*/ "Top 40",
76 /* 62*/ "Christian Rap",
77 /* 63*/ "Pop/Funk",
78 /* 64*/ "Jungle",
79 /* 65*/ "Native American",
80 /* 66*/ "Cabaret",
81 /* 67*/ "New Wave",
82 /* 68*/ "Psychadelic",
83 /* 69*/ "Rave",
84 /* 70*/ "Showtunes",
85 /* 71*/ "Trailer",
86 /* 72*/ "Lo-Fi",
87 /* 73*/ "Tribal",
88 /* 74*/ "Acid Punk",
89 /* 75*/ "Acid Jazz",
90 /* 76*/ "Polka",
91 /* 77*/ "Retro",
92 /* 78*/ "Musical",
93 /* 79*/ "Rock & Roll",
94 /* 80*/ "Hard Rock",
95 /* 81*/ "Folk",                     /* Winamp extensions */
96 /* 82*/ "Folk/Rock",
97 /* 83*/ "National Folk",
98 /* 84*/ "Swing",
99 /* 85*/ "Fast-Fusion",
100 /* 86*/ "Bebob",
101 /* 87*/ "Latin",
102 /* 88*/ "Revival",
103 /* 89*/ "Celtic",
104 /* 90*/ "Bluegrass",
105 /* 91*/ "Avantgarde",
106 /* 92*/ "Gothic Rock",
107 /* 93*/ "Progressive Rock",
108 /* 94*/ "Psychedelic Rock",
109 /* 95*/ "Symphonic Rock",
110 /* 96*/ "Slow Rock",
111 /* 97*/ "Big Band",
112 /* 98*/ "Chorus",
113 /* 99*/ "Easy Listening",
114 /*100*/ "Acoustic",
115 /*101*/ "Humour",
116 /*102*/ "Speech",
117 /*103*/ "Chanson",
118 /*104*/ "Opera",
119 /*105*/ "Chamber Music",
120 /*106*/ "Sonata",
121 /*107*/ "Symphony",
122 /*108*/ "Booty Bass",
123 /*109*/ "Primus",
124 /*110*/ "Porn Groove",
125 /*111*/ "Satire",
126 /*112*/ "Slow Jam",                 /* Winamp 1.7 */
127 /*113*/ "Club",
128 /*114*/ "Tango",
129 /*115*/ "Samba",
130 /*116*/ "Folklore",
131 /*117*/ "Ballad",                   /* Winamp 1.90 */
132 /*118*/ "Power Ballad",
133 /*119*/ "Rhythmic Soul",
134 /*120*/ "Freestyle",
135 /*121*/ "Duet",
136 /*122*/ "Punk Rock",
137 /*123*/ "Drum Solo",
138 /*124*/ "A Capella",
139 /*125*/ "Euro-House",
140 /*126*/ "Dance Hall",
141 /*127*/ "Goa",
142 /*128*/ "Drum & Bass",
143 /*129*/ "Club-House",
144 /*130*/ "Hardcore",
145 /*131*/ "Terror",
146 /*132*/ "Indie",
147 /*133*/ "BritPop",
148 /*134*/ "Negerpunk",
149 /*135*/ "Polsk Punk",
150 /*136*/ "Beat",
151 /*137*/ "Christian Gangsta",
152 /*138*/ "Heavy Metal",
153 /*139*/ "Black Metal",
154 /*140*/ "Crossover",
155 /*141*/ "Contemporary Christian",
156 /*142*/ "Christian Rock",
157 /*143*/ "Merengue",                 /* Winamp 1.91 */
158 /*144*/ "Salsa",
159 /*145*/ "Thrash Metal",
160 /*146*/ "Anime",
161 /*147*/ "JPop",
162 /*148*/ "Synthpop",
163 };
164 
165 const unsigned char ID3v1_numgenres = sizeof ID3v1_genre / sizeof *ID3v1_genre;
166 
167