source: roaraudio/include/roaraudio/meta.h @ 4666:db6697d8fbab

Last change on this file since 4666:db6697d8fbab was 4666:db6697d8fbab, checked in by phi, 13 years ago

added ROAR_META_TYPE_LIKENESS

File size: 3.3 KB
Line 
1//meta.h:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
5 *
6 *  This file is part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU Lesser General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU Lesser General Public License for more details.
18 *
19 *  You should have received a copy of the GNU Lesser General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 *  NOTE: Even though this file is LGPLed it (may) include GPLed files
25 *  so the license of this file is/may therefore downgraded to GPL.
26 *  See HACKING for details.
27 */
28
29#ifndef _ROARAUDIO_META_H_
30#define _ROARAUDIO_META_H_
31
32#define ROAR_META_TYPE_NONE           0
33#define ROAR_META_TYPE_TITLE          1
34#define ROAR_META_TYPE_ALBUM          2
35#define ROAR_META_TYPE_AUTHOR         3
36#define ROAR_META_TYPE_AUTOR          ROAR_META_TYPE_AUTHOR
37#define ROAR_META_TYPE_ARTIST         ROAR_META_TYPE_AUTHOR
38#define ROAR_META_TYPE_VERSION        4
39#define ROAR_META_TYPE_DATE           5
40#define ROAR_META_TYPE_LICENSE        6
41#define ROAR_META_TYPE_TRACKNUMBER    7
42#define ROAR_META_TYPE_ORGANIZATION   8
43#define ROAR_META_TYPE_DESCRIPTION    9
44#define ROAR_META_TYPE_GENRE          10
45#define ROAR_META_TYPE_LOCATION       11
46#define ROAR_META_TYPE_CONTACT        12
47#define ROAR_META_TYPE_STREAMURL      13
48#define ROAR_META_TYPE_HOMEPAGE       14
49#define ROAR_META_TYPE_THUMBNAIL      15
50#define ROAR_META_TYPE_LENGTH         16
51#define ROAR_META_TYPE_COMMENT        17
52#define ROAR_META_TYPE_OTHER          18
53#define ROAR_META_TYPE_FILENAME       19
54#define ROAR_META_TYPE_FILEURL        20
55#define ROAR_META_TYPE_SERVER         21
56#define ROAR_META_TYPE_DURATION       22
57#define ROAR_META_TYPE_WWW            ROAR_META_TYPE_HOMEPAGE
58#define ROAR_META_TYPE_WOAF           23 /* ID3: Official audio file webpage */
59#define ROAR_META_TYPE_ENCODER        24
60#define ROAR_META_TYPE_ENCODEDBY      ROAR_META_TYPE_ENCODER
61#define ROAR_META_TYPE_YEAR           25
62#define ROAR_META_TYPE_DISCID         26
63#define ROAR_META_TYPE_RPG_TRACK_PEAK 27
64#define ROAR_META_TYPE_RPG_TRACK_GAIN 28
65#define ROAR_META_TYPE_RPG_ALBUM_PEAK 29
66#define ROAR_META_TYPE_RPG_ALBUM_GAIN 30
67#define ROAR_META_TYPE_HASH           31
68#define ROAR_META_TYPE_SIGNALINFO     32
69#define ROAR_META_TYPE_AUDIOINFO      ROAR_META_TYPE_SIGNALINFO
70#define ROAR_META_TYPE_OFFSET         33
71#define ROAR_META_TYPE_PERFORMER      34
72#define ROAR_META_TYPE_COPYRIGHT      35
73#define ROAR_META_TYPE_LIKENESS       36
74
75
76#define ROAR_META_MODE_SET           0
77#define ROAR_META_MODE_ADD           1
78#define ROAR_META_MODE_DELETE        2
79#define ROAR_META_MODE_CLEAR         3
80#define ROAR_META_MODE_FINALIZE      4
81
82#define ROAR_META_MAX_NAMELEN 32
83
84#define ROAR_META_MAX_PER_STREAM 16
85
86struct roar_meta {
87 int    type;
88 char   key[ROAR_META_MAX_NAMELEN];
89 char * value;
90};
91
92#endif
93
94//ll
Note: See TracBrowser for help on using the repository browser.