comparison src/libaudtag/id3/frame.h @ 4887:0ddbd0025174 default tip

added libaudtag. (not used yet.)
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Wed, 05 May 2010 18:26:06 +0900
parents
children
comparison
equal deleted inserted replaced
4886:54b4f7aaca24 4887:0ddbd0025174
1 /*
2 * Copyright 2009 Paula Stanciu
3 *
4 * This file is part of Audacious.
5 *
6 * Audacious is free software: you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free Software
8 * Foundation, version 3 of the License.
9 *
10 * Audacious is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * Audacious. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * The Audacious team does not consider modular code linking to Audacious or
18 * using our public API to be a derived work.
19 */
20
21 #ifndef AUD_ID3_FRAME
22 #define AUD_ID3_FRAME
23
24 #include <glib-2.0/glib.h>
25
26 enum {
27 ID3_ALBUM = 0,
28 ID3_TITLE,
29 ID3_COMPOSER,
30 ID3_COPYRIGHT,
31 ID3_DATE,
32 ID3_TIME,
33 ID3_LENGTH,
34 ID3_ARTIST,
35 ID3_TRACKNR,
36 ID3_YEAR,
37 ID3_GENRE,
38 ID3_COMMENT,
39 ID3_PRIVATE,
40 ID3_ENCODER,
41 ID3_RECORDING_TIME,
42 ID3_TXXX,
43 ID3_TAGS_NO
44 };
45
46 char * id3_frames[] = {"TALB","TIT2","TCOM", "TCOP", "TDAT", "TIME", "TLEN",
47 "TPE1", "TRCK", "TYER","TCON", "COMM", "PRIV", "TSSE", "TDRC", "TXXX"};
48
49 #endif