1 /***********************************
2 * Copyright (C) 2001 Jason Carter
3 * See the file "LICENSE" for details
4 ***********************************
6 * NAME: ID3EDIT - ID3 tag v 1.1 editor
7 * DESCRIPTION: Genres character array
9 ***********************************
11 * Initially modified for use with MPlayer by Diego Biurrun on 2004-08-22
13 * detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/
21 const char * const genres
[] = {
23 "Classic Rock", /* 1 */
41 "Industrial", /* 19 */
42 "Alternative", /* 20 */
44 "Death Metal", /* 22 */
46 "Soundtrack", /* 24 */
47 "Eurotechno", /* 25 */
55 "Instrumental", /* 33 */
59 "Sound Clip", /* 37 */
62 "Alternative Rock", /* 40 */
67 "Meditative", /* 45 */
68 "Instrumental Pop", /* 46 */
69 "Instrumental Rock", /* 47 */
73 "Techno-Industrial", /* 51 */
74 "Electronic", /* 52 */
79 "Southern Rock", /* 57 */
84 "Christian Rap", /* 62 */
86 "Native American", /* 64 */
89 "Psychadelic", /* 67 */
91 "Show Tunes", /* 69 */
100 "Rock & Roll", /* 78 */
101 "Hard Rock", /* 79 */
103 "Folk/Rock", /* 81 */
104 "National Folk", /* 82 */
106 "Fast-Fusion", /* 84 */
111 "Bluegrass", /* 89 */
112 "Avantgarde", /* 90 */
113 "Gothic Rock", /* 91 */
114 "Progressive Rock", /* 92 */
115 "Psychedelic Rock", /* 93 */
116 "Symphonic Rock", /* 94 */
117 "Slow Rock", /* 95 */
120 "Easy Listening", /* 98 */
126 "Chamber Music", /* 104 */
128 "Symphony", /* 106 */
129 "Booty Bass", /* 107 */
131 "Porn Groove", /* 109 */
133 "Slow Jam", /* 111 */
137 "Folklore", /* 115 */
139 "Power Ballad", /* 117 */
140 "Rhytmic Soul", /* 118 */
141 "Freestyle", /* 119 */
143 "Punk Rock", /* 121 */
144 "Drum Solo", /* 122 */
145 "Acapella", /* 123 */
146 "Euro-House", /* 124 */
147 "Dance Hall", /* 125 */
149 "Drum & Bass", /* 127 */
150 "Club-House", /* 128 */
151 "Hardcore", /* 129 */
155 "Negerpunk", /* 133 */
156 "Polsk Punk", /* 134 */
158 "Christian Gangsta Rap", /* 136 */
159 "Heavy Metal", /* 137 */
160 "Black Metal", /* 138 */
161 "Crossover", /* 139 */
162 "Contemporary Christian", /* 140 */
163 "Christian Rock", /* 141 */
164 "Merengue", /* 142 */
166 "Thrash Metal", /* 144 */
169 "Synthpop", /* 147 */
281 #endif /* GENRES_H */