1 /* id3 Renamer
2  * genre.h - Header for music genres
3  * Copyright (C) 1998  Robert Alto (badcrc@tscnet.com)
4  * modified by Scot Hacker : beos@birdhouse.org
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
19  * USA.
20  */
21 
22 #ifndef __GENRE_H__
23 #define __GENRE_H__
24 
25 char *genre_table[] = {
26     "Blues",
27     "Classic Rock",
28     "Country",
29     "Dance",
30     "Disco",
31     "Funk",
32     "Grunge",
33     "Hip-Hop",
34     "Jazz",
35     "Metal",
36     "New Age",
37     "Oldies",
38     "Other",
39     "Pop",
40     "R&B",
41     "Rap",
42     "Reggae",
43     "Rock",
44     "Techno",
45     "Industrial",
46     "Alternative",
47     "Ska",
48     "Death Metal",
49     "Pranks",
50     "Soundtrack",
51     "Euro-Techno",
52     "Ambient",
53     "Trip-Hop",
54     "Vocal",
55     "Jazz+Funk",
56     "Fusion",
57     "Trance",
58     "Classical",
59     "Instrumental",
60     "Acid",
61     "House",
62     "Game",
63     "Sound Clip",
64     "Gospel",
65     "Noise",
66     "AlternRock",
67     "Bass",
68     "Soul",
69     "Punk",
70     "Space",
71     "Meditative",
72     "Instrum. Pop",
73     "Instrum. Rock",
74     "Ethnic",
75     "Gothic",
76     "Darkwave",
77     "Techno-Industrial",
78     "Electronic",
79     "Pop-Folk",
80     "Eurodance",
81     "Dream",
82     "Southern Rock",
83     "Comedy",
84     "Cult",
85     "Gangsta",
86     "Top",
87     "Christian Rap",
88     "Pop/Funk",
89     "Jungle",
90     "Native American",
91     "Cabaret",
92     "New Wave",
93     "Psychadelic",
94     "Rave",
95     "Showtunes",
96     "Trailer",
97     "Lo-Fi",
98     "Tribal",
99     "Acid Punk",
100     "Acid Jazz",
101     "Polka",
102     "Retro",
103     "Musical",
104     "Rock & Roll",
105     "Hard Rock",
106     "Folk",
107     "Folk-Rock",
108     "National Folk",
109     "Swing",
110     "Fast Fusion",
111     "Bebob",
112     "Latin",
113     "Revival",
114     "Celtic",
115     "Bluegrass",
116     "Avantgarde",
117     "Gothic Rock",
118     "Prog. Rock",
119     "Psychedel. Rock",
120     "Symph. Rock",
121     "Slow Rock",
122     "Big Band",
123     "Chorus",
124     "Easy Listening",
125     "Acoustic",
126     "Humour",
127     "Speech",
128     "Chanson",
129     "Opera",
130     "Chamber Music",
131     "Sonata",
132     "Symphony",
133     "Booty Bass",
134     "Primus",
135     "Porn Groove",
136     "Satire",
137     "Slow Jam",
138     "Club",
139     "Tango",
140     "Samba",
141     "Folklore",
142     "Ballad",
143     "Power Ballad",
144     "Rhythmic Soul",
145     "Freestyle",
146     "Duet",
147     "Punk Rock",
148     "Drum Solo",
149     "Acapella",
150     "Euro-House",
151     "Dance Hall",
152 
153                        };
154 
155 const int genre_count = 125;
156 
157 
158 #endif /* __GENRE_H__ */
159 
160 
161