source: roaraudio/include/roaraudio/meta.h @ 2263:a4556a91e5f3

Last change on this file since 2263:a4556a91e5f3 was 2263:a4556a91e5f3, checked in by phi, 15 years ago

added meta type HASH for crypto hashes

File size: 2.9 KB
Line 
1//meta.h:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
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, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 *  NOTE: Even though this file is LGPLed it (may) include GPLed files
24 *  so the license of this file is/may therefore downgraded to GPL.
25 *  See HACKING for details.
26 */
27
28#ifndef _ROARAUDIO_META_H_
29#define _ROARAUDIO_META_H_
30
31#define ROAR_META_TYPE_NONE           0
32#define ROAR_META_TYPE_TITLE          1
33#define ROAR_META_TYPE_ALBUM          2
34#define ROAR_META_TYPE_AUTOR          3
35#define ROAR_META_TYPE_ARTIST         ROAR_META_TYPE_AUTOR
36#define ROAR_META_TYPE_VERSION        4
37#define ROAR_META_TYPE_DATE           5
38#define ROAR_META_TYPE_LICENSE        6
39#define ROAR_META_TYPE_TRACKNUMBER    7
40#define ROAR_META_TYPE_ORGANIZATION   8
41#define ROAR_META_TYPE_DESCRIPTION    9
42#define ROAR_META_TYPE_GENRE          10
43#define ROAR_META_TYPE_LOCATION       11
44#define ROAR_META_TYPE_CONTACT        12
45#define ROAR_META_TYPE_STREAMURL      13
46#define ROAR_META_TYPE_HOMEPAGE       14
47#define ROAR_META_TYPE_THUMBNAIL      15
48#define ROAR_META_TYPE_LENGTH         16
49#define ROAR_META_TYPE_COMMENT        17
50#define ROAR_META_TYPE_OTHER          18
51#define ROAR_META_TYPE_FILENAME       19
52#define ROAR_META_TYPE_FILEURL        20
53#define ROAR_META_TYPE_SERVER         21
54#define ROAR_META_TYPE_DURATION       22
55#define ROAR_META_TYPE_WWW           ROAR_META_TYPE_HOMEPAGE
56#define ROAR_META_TYPE_WOAF           23 /* ID3: Official audio file webpage */
57#define ROAR_META_TYPE_ENCODER        24
58#define ROAR_META_TYPE_ENCODEDBY      ROAR_META_TYPE_ENCODER
59#define ROAR_META_TYPE_YEAR           25
60#define ROAR_META_TYPE_DISCID         26
61#define ROAR_META_TYPE_RPG_TRACK_PEAK 27
62#define ROAR_META_TYPE_RPG_TRACK_GAIN 28
63#define ROAR_META_TYPE_RPG_ALBUM_PEAK 29
64#define ROAR_META_TYPE_RPG_ALBUM_GAIN 30
65#define ROAR_META_TYPE_HASH           31
66
67
68#define ROAR_META_MODE_SET           0
69#define ROAR_META_MODE_ADD           1
70#define ROAR_META_MODE_DELETE        2
71#define ROAR_META_MODE_CLEAR         3
72#define ROAR_META_MODE_FINALIZE      4
73
74#define ROAR_META_MAX_NAMELEN 32
75
76#define ROAR_META_MAX_PER_STREAM 16
77
78struct roar_meta {
79 int    type;
80 char   key[ROAR_META_MAX_NAMELEN];
81 char * value;
82};
83
84#endif
85
86//ll
Note: See TracBrowser for help on using the repository browser.