source: roaraudio/include/roaraudio/audio.h @ 1962:cca5a5edd18f

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

added ID for codec RoarDMX

File size: 7.2 KB
Line 
1//audio.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_AUDIO_H_
29#define _ROARAUDIO_AUDIO_H_
30
31#define ROAR_CODEC_PCM_LE  ROAR_CODEC_PCM_S_LE
32#define ROAR_CODEC_PCM_BE  ROAR_CODEC_PCM_S_BE
33#define ROAR_CODEC_PCM_PDP ROAR_CODEC_PCM_S_PDP
34
35/*
36 Bits:
37 76543210
38 |||||||\---\ byte-
39 ||||||\----/ order
40 |||||\-----> unsigned?
41 ||||\------> PCM(0) or MIDI(1)?
42 |||\-------> PCM/MIDI(0) or hi-level codecs(1)
43 ||\--------> MISC(0) or RIFF/WAVE like(1)
44 |\---------> first set(0) or second set(1)
45 \----------> (0)
46
47 BB = Byte order / MSB/LSB
48
49 -- First Set:
50
51 MIDI 0x08:
52 76543210
53      000 0x08 -> MIDI File
54
55 hi-level 0x10:
56  76543210
57      0000 0x10 -> Ogg Vorbis
58      0001 0x11 -> Native FLAC
59      0010 0x12 -> Ogg Speex
60      0011 0x13 -> Reserved for CELT
61      0100 0x14 -> Ogg FLAC
62      0101 0x15 -> Ogg General
63      0110 0x16 -> Ogg CELT
64      [...]
65      **** 0x1a -> ROAR CELT
66      **** 0x1b -> ROAR SPEEX
67      **** 0x1c -> RAUM
68      **** 0x1d -> RAUM Vorbis
69
70 RIFF/WAVE like 0x20:
71  76543210
72      0000 0x20 -> RIFF/WAVE
73
74 LOG Codecs 0x30:
75  76543210
76      00BB 0x30 -> A-Law (base)
77      01BB 0x34 -> mu-Law (base)
78
79 -- Second Set:
80
81 Bits:
82 76543210
83 |||||||\---\ byte-
84 ||||||\----/ order
85 |||||\-----> unsigned? (or other flags)
86 ||||\------> META: text(0) or binary(1)
87 |||\-------> META(0)/CONTAINER(1)
88 ||\--------> Specal codecs(0)
89 |\---------> second set(1)
90 \----------> (0)
91
92 Meta Codecs 0x40:
93  76543210
94      0000 0x40 -> Meta Text: Vorbis Comment Like
95      [...]
96      0100 0x44 -> Meta Text: RoarAudio Like
97      [...]
98      11BB 0x4c -> Meta Binary: RoarAudio Like
99
100 Container 0x50:
101  76543210
102      0000 0x50 -> Null container: pass
103      0001 0x51 -> Gzip
104      0010 0x52 -> Bzip2
105      0011 0x53 -> OpenPGP bin
106      0100 0x54 -> OpenPGP asc
107      0101 0x55 -> TAR
108
109 Bits:
110 76543210
111 |||||||\---\ byte-
112 ||||||\----/ order
113 |||||\-----> unsigned? (or other flags)
114 ||||\------> (0)
115 |||\-------> MIDI(0)/Light(1)
116 ||\--------> MIDI and Light(1)
117 |\---------> second set(1)
118 \----------> (0)
119
120 MIDI 0x60:
121  76543210
122      0000 -> MIDI
123
124 Light 0x70:
125  76543210
126      0000 -> DMX512
127      0001 -> RoarDMX
128
129*/
130
131#define ROAR_CODEC_IS_SIGNED(x)  (((x) & ROAR_CODEC_UNSIGNED) == 0 ? 1 : 0)
132#define ROAR_CODEC_BYTE_ORDER(x) ((x) & 0x03)
133
134#define ROAR_CODEC_UNSIGNED    (1 << 2)
135#define ROAR_CODEC_LE          0x01
136#define ROAR_CODEC_BE          0x02
137#define ROAR_CODEC_PDP         0x03
138
139#define ROAR_CODEC_MSB         0x00
140#define ROAR_CODEC_LSB         0x01
141
142#define ROAR_CODEC_PCM       0x00
143#define ROAR_CODEC_PCM_S_LE  (ROAR_CODEC_PCM | ROAR_CODEC_LE )
144#define ROAR_CODEC_PCM_S_BE  (ROAR_CODEC_PCM | ROAR_CODEC_BE )
145#define ROAR_CODEC_PCM_S_PDP (ROAR_CODEC_PCM | ROAR_CODEC_PDP)
146
147#define ROAR_CODEC_PCM_U_LE  (ROAR_CODEC_PCM_S_LE  | ROAR_CODEC_UNSIGNED)
148#define ROAR_CODEC_PCM_U_BE  (ROAR_CODEC_PCM_S_BE  | ROAR_CODEC_UNSIGNED)
149#define ROAR_CODEC_PCM_U_PDP (ROAR_CODEC_PCM_S_PDP | ROAR_CODEC_UNSIGNED)
150
151#define ROAR_CODEC_MIDI_FILE    0x08
152
153#define ROAR_CODEC_OGG_VORBIS   0x10
154#define ROAR_CODEC_FLAC         0x11 /* native FLAC without Ogg container */
155#define ROAR_CODEC_OGG_SPEEX    0x12
156/* #define ROAR_CODEC_CELT/OGG_CELT 0x13 Reserved for CELT */
157#define ROAR_CODEC_OGG_FLAC     0x14
158#define ROAR_CODEC_OGG_GENERAL  0x15
159
160#define ROAR_CODEC_ROAR_CELT    0x1a
161#define ROAR_CODEC_ROAR_SPEEX   0x1b
162
163#define ROAR_CODEC_RAUM         0x1c
164#define ROAR_CODEC_RAUM_VORBIS  0x1d
165
166#define ROAR_CODEC_RIFF_WAVE    0x20
167
168#define ROAR_CODEC_ALAW         0x30
169#define ROAR_CODEC_MULAW        0x34
170
171// Meta Codecs:
172#define ROAR_CODEC_META_VCLT    0x40 /* VCLT = Vorbis Comment Like Text */
173#define ROAR_CODEC_META_RALT    0x44 /* RALT = RoarAudio Like Text      */
174#define ROAR_CODEC_META_RALB    0x4c /* RALB = RoarAudio Like Binary    */
175                                     /* if no byte order is given then you
176                                        should assume BE as it is network
177                                        byte order                     */
178#define ROAR_CODEC_META_RALB_LE (ROAR_CODEC_META_RALB | ROAR_CODEC_LE)
179#define ROAR_CODEC_META_RALB_BE (ROAR_CODEC_META_RALB | ROAR_CODEC_BE)
180#define ROAR_CODEC_META_RALB_PDP (ROAR_CODEC_META_RALB | ROAR_CODEC_PDP)
181
182// Container Codecs:
183/*
184 Container 0x50:
185  76543210
186      0000 0x50 -> Null container: pass
187      0001 0x51 -> Gzip
188      0010 0x52 -> Bzip2
189      0011 0x53 -> OpenPGP bin
190      0100 0x54 -> OpenPGP asc
191      0101 0x55 -> TAR
192*/
193#define ROAR_CODEC_CONT_NULL    0x50
194#define ROAR_CODEC_CONT_BASE    ROAR_CODEC_CONT_NULL
195#define ROAR_CODEC_CONT_GZIP    0x51
196#define ROAR_CODEC_CONT_BZIP2   0x52
197#define ROAR_CODEC_CONT_OPGPBIN 0x53
198#define ROAR_CODEC_CONT_OPGPASC 0x54
199#define ROAR_CODEC_CONT_TAR     0x55
200
201
202#define ROAR_CODEC_MIDI         0x60
203#define ROAR_CODEC_DMX512       0x70
204#define ROAR_CODEC_ROARDMX      0x71
205
206#if BYTE_ORDER == BIG_ENDIAN
207
208#define ROAR_CODEC_NATIVE_ENDIAN ROAR_CODEC_BE
209
210#define ROAR_CODEC_DEFAULT ROAR_CODEC_PCM_BE
211#define ROAR_BE2DEF(x) (x)
212
213#elif BYTE_ORDER == LITTLE_ENDIAN
214
215#define ROAR_CODEC_NATIVE_ENDIAN ROAR_CODEC_LE
216
217#define ROAR_CODEC_DEFAULT ROAR_CODEC_PCM_LE
218#define ROAR_LE2DEF(x) (x)
219
220#else
221
222#define ROAR_CODEC_NATIVE_ENDIAN ROAR_CODEC_PDP
223
224#define ROAR_CODEC_DEFAULT ROAR_CODEC_PCM_PDP
225#define ROAR_PDP2DEF(x) (x)
226
227#endif
228
229
230#define ROAR_CODEC_NATIVE ROAR_CODEC_DEFAULT
231
232#define ROAR_BITS_MAX             32
233
234#ifndef ROAR_BITS_DEFAULT
235#define ROAR_BITS_DEFAULT         16
236#endif
237#ifndef ROAR_CHANNELS_DEFAULT
238#define ROAR_CHANNELS_DEFAULT      2
239#endif
240#ifndef ROAR_RATE_DEFAULT
241#define ROAR_RATE_DEFAULT      44100
242#endif
243
244#define ROAR_MAX_CHANNELS         64
245
246#define ROAR_SET_VOL_ALL           1
247#define ROAR_SET_VOL_ONE           2
248
249
250#define ROAR_SPEEX_MAX_CC          256
251#define ROAR_SPEEX_MAGIC           "RoarSpeex"
252#define ROAR_SPEEX_MAGIC_LEN       9
253#define ROAR_SPEEX_MODE_NB         1
254#define ROAR_SPEEX_MODE_WB         2
255#define ROAR_SPEEX_MODE_UWB        3
256
257#define ROAR_CELT_MAGIC            "RoarCELT0"
258#define ROAR_CELT_MAGIC_LEN        9
259
260struct roar_audio_info {
261 unsigned int rate;
262 unsigned int bits;
263 unsigned int channels;
264 unsigned int codec;
265};
266
267struct roar_mixer_settings {
268 //unsigned      channels;
269 roar_intm16   scale;
270 roar_intm16   rpg_mul; // rpg = ReplayGain
271 roar_intm16   rpg_div;
272 roar_intm16   mixer[ROAR_MAX_CHANNELS];
273};
274
275#define ROAR_MIXER(x) ((struct roar_mixer_settings *)x)
276
277#endif
278
279//ll
Note: See TracBrowser for help on using the repository browser.