packetizer: hevc: add poc debug
[vlc.git] / modules / meta_engine / ID3Genres.h
blob852302e157bfa20196d7cbc38b2877501354a251
1 /*****************************************************************************
2 * ID3Genres.h: list of genres for id3 genre tags
3 *****************************************************************************
4 * Copyright (C) 2002-2003 VLC authors and VideoLAN
6 * Author: Sigmund Augdal Helberg <dnumgis@videolan.org>
7 * list found at http://www.id3.org/id3v2.4.0-frames.txt
8 * Author: John Freed <okvlc@johnfreed.com>
9 * updated with extensions to conform to real-world files
10 * see http://www.id3.org/Compliance_Issues and
11 * http://www.id3.org/id3v2.3.0
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU Lesser General Public License as published by
15 * the Free Software Foundation; either version 2.1 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License for more details.
23 * You should have received a copy of the GNU Lesser General Public License
24 * along with this program; if not, write to the Free Software Foundation,
25 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26 *****************************************************************************/
27 #ifndef ID3GENRES_H
28 #define ID3GENRES_H
30 #define ID3_GENRES_COUNT 148
32 static const char *ID3_ppsz_genres[] = {
33 N_("Blues"),
34 N_("Classic Rock"),
35 N_("Country"),
36 N_("Dance"),
37 N_("Disco"),
38 N_("Funk"),
39 N_("Grunge"),
40 N_("Hip-Hop"),
41 N_("Jazz"),
42 N_("Metal"),
43 N_("New Age"),
44 N_("Oldies"),
45 N_("Other"),
46 N_("Pop"),
47 N_("R&B"),
48 N_("Rap"),
49 N_("Reggae"),
50 N_("Rock"),
51 N_("Techno"),
52 N_("Industrial"),
53 N_("Alternative"),
54 N_("Ska"),
55 N_("Death Metal"),
56 N_("Pranks"),
57 N_("Soundtrack"),
58 N_("Euro-Techno"),
59 N_("Ambient"),
60 N_("Trip-Hop"),
61 N_("Vocal"),
62 N_("Jazz+Funk"),
63 N_("Fusion"),
64 N_("Trance"),
65 N_("Classical"),
66 N_("Instrumental"),
67 N_("Acid"),
68 N_("House"),
69 N_("Game"),
70 N_("Sound Clip"),
71 N_("Gospel"),
72 N_("Noise"),
73 N_("Alternative Rock"),
74 N_("Bass"),
75 N_("Soul"),
76 N_("Punk"),
77 N_("Space"),
78 N_("Meditative"),
79 N_("Instrumental Pop"),
80 N_("Instrumental Rock"),
81 N_("Ethnic"),
82 N_("Gothic"),
83 N_("Darkwave"),
84 N_("Techno-Industrial"),
85 N_("Electronic"),
86 N_("Pop-Folk"),
87 N_("Eurodance"),
88 N_("Dream"),
89 N_("Southern Rock"),
90 N_("Comedy"),
91 N_("Cult"),
92 N_("Gangsta"),
93 N_("Top 40"),
94 N_("Christian Rap"),
95 N_("Pop/Funk"),
96 N_("Jungle"),
97 N_("Native American"),
98 N_("Cabaret"),
99 N_("New Wave"),
100 N_("Psychedelic"),
101 N_("Rave"),
102 N_("Showtunes"),
103 N_("Trailer"),
104 N_("Lo-Fi"),
105 N_("Tribal"),
106 N_("Acid Punk"),
107 N_("Acid Jazz"),
108 N_("Polka"),
109 N_("Retro"),
110 N_("Musical"),
111 N_("Rock & Roll"),
112 N_("Hard Rock"),
113 N_("Folk"),
114 N_("Folk-Rock"),
115 N_("National Folk"),
116 N_("Swing"),
117 N_("Fast Fusion"),
118 N_("Bebob"),
119 N_("Latin"),
120 N_("Revival"),
121 N_("Celtic"),
122 N_("Bluegrass"),
123 N_("Avantgarde"),
124 N_("Gothic Rock"),
125 N_("Progressive Rock"),
126 N_("Psychedelic Rock"),
127 N_("Symphonic Rock"),
128 N_("Slow Rock"),
129 N_("Big Band"),
130 N_("Chorus"),
131 N_("Easy Listening"),
132 N_("Acoustic"),
133 N_("Humour"),
134 N_("Speech"),
135 N_("Chanson"),
136 N_("Opera"),
137 N_("Chamber Music"),
138 N_("Sonata"),
139 N_("Symphony"),
140 N_("Booty Bass"),
141 N_("Primus"),
142 N_("Porn Groove"),
143 N_("Satire"),
144 N_("Slow Jam"),
145 N_("Club"),
146 N_("Tango"),
147 N_("Samba"),
148 N_("Folklore"),
149 N_("Ballad"),
150 N_("Power Ballad"),
151 N_("Rhythmic Soul"),
152 N_("Freestyle"),
153 N_("Duet"),
154 N_("Punk Rock"),
155 N_("Drum Solo"),
156 N_("Acapella"),
157 N_("Euro-House"),
158 N_("Dance Hall"),
159 N_("Goa"),
160 N_("Drum & Bass"),
161 N_("Club - House"),
162 N_("Hardcore"),
163 N_("Terror"),
164 N_("Indie"),
165 N_("BritPop"),
166 N_("Negerpunk"),
167 N_("Polsk Punk"),
168 N_("Beat"),
169 N_("Christian Gangsta Rap"),
170 N_("Heavy Metal"),
171 N_("Black Metal"),
172 N_("Crossover"),
173 N_("Contemporary Christian"),
174 N_("Christian Rock"),
175 N_("Merengue"),
176 N_("Salsa"),
177 N_("Thrash Metal"),
178 N_("Anime"),
179 N_("JPop"),
180 N_("Synthpop")
183 #endif