1 /***********************************
2 * Copyright (C) 2001 Jason Carter
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 ***********************************
20 * NAME: ID3EDIT - ID3 tag v 1.1 editor
21 * DESCRIPTION: Genres character array
22 * AUTHOR: Jason Carter
23 ***********************************
25 * Initially modified for use with MPlayer by Diego Biurrun on 2004-08-22
27 * detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/
30 #ifndef MPLAYER_GENRES_H
31 #define MPLAYER_GENRES_H
34 const char * const genres
[] = {
36 "Classic Rock", /* 1 */
54 "Industrial", /* 19 */
55 "Alternative", /* 20 */
57 "Death Metal", /* 22 */
59 "Soundtrack", /* 24 */
60 "Eurotechno", /* 25 */
68 "Instrumental", /* 33 */
72 "Sound Clip", /* 37 */
75 "Alternative Rock", /* 40 */
80 "Meditative", /* 45 */
81 "Instrumental Pop", /* 46 */
82 "Instrumental Rock", /* 47 */
86 "Techno-Industrial", /* 51 */
87 "Electronic", /* 52 */
91 "Southern Rock", /* 56 */
96 "Christian Rap", /* 61 */
99 "Native American", /* 64 */
102 "Psychadelic", /* 67 */ /* typo taken from the id3v2spec*/
104 "Show Tunes", /* 69 */
108 "Acid Punk", /* 73 */
109 "Acid Jazz", /* 74 */
113 "Rock & Roll", /* 78 */
114 "Hard Rock", /* 79 */
116 "Folk/Rock", /* 81 */
117 "National Folk", /* 82 */
119 "Fast-Fusion", /* 84 */
124 "Bluegrass", /* 89 */
125 "Avantgarde", /* 90 */
126 "Gothic Rock", /* 91 */
127 "Progressive Rock", /* 92 */
128 "Psychedelic Rock", /* 93 */
129 "Symphonic Rock", /* 94 */
130 "Slow Rock", /* 95 */
133 "Easy Listening", /* 98 */
139 "Chamber Music", /* 104 */
141 "Symphony", /* 106 */
142 "Booty Bass", /* 107 */
144 "Porn Groove", /* 109 */
146 "Slow Jam", /* 111 */
150 "Folklore", /* 115 */
152 "Power Ballad", /* 117 */
153 "Rhytmic Soul", /* 118 */
154 "Freestyle", /* 119 */
156 "Punk Rock", /* 121 */
157 "Drum Solo", /* 122 */
158 "Acapella", /* 123 */
159 "Euro-House", /* 124 */
160 "Dance Hall", /* 125 */
162 "Drum & Bass", /* 127 */
163 "Club-House", /* 128 */
164 "Hardcore", /* 129 */
168 "Negerpunk", /* 133 */
169 "Polsk Punk", /* 134 */
171 "Christian Gangsta Rap", /* 136 */
172 "Heavy Metal", /* 137 */
173 "Black Metal", /* 138 */
174 "Crossover", /* 139 */
175 "Contemporary Christian", /* 140 */
176 "Christian Rock", /* 141 */
177 "Merengue", /* 142 */
179 "Thrash Metal", /* 144 */
182 "Synthpop", /* 147 */
293 #endif /* MPLAYER_GENRES_H */