source: roaraudio/include/roaraudio/audio.h @ 704:25764dfdef62

Last change on this file since 704:25764dfdef62 was 704:25764dfdef62, checked in by phi, 16 years ago

added COPYING.lgplv3

File size: 4.0 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
45 MIDI 0x08:
46 76543210
47      000 0x08 -> MIDI File
48
49 hi-level 0x10:
50 76543210
51     0000 0x10 -> Ogg Vorbis
52     0001 0x11 -> Native FLAC
53     0010 0x12 -> Ogg Speex
54     0011 0x13 -> Reserved for CELT
55     0100 0x14 -> Ogg FLAC
56     0101 0x15 -> Ogg General
57     0110 0x16 -> Ogg CELT
58     [...]
59     **** 0x1a -> ROAR CELT
60     **** 0x1b -> ROAR SPEEX
61
62 RIFF/WAVE like 0x20:
63  76543210
64     00000 0x20 -> RIFF/WAVE
65*/
66
67#define ROAR_CODEC_IS_SIGNED(x)  (((x) & ROAR_CODEC_UNSIGNED) == 0 ? 1 : 0)
68#define ROAR_CODEC_BYTE_ORDER(x) ((x) & 0x03)
69
70#define ROAR_CODEC_UNSIGNED    (1 << 2)
71
72#define ROAR_CODEC_PCM_S_LE  0x01
73#define ROAR_CODEC_PCM_S_BE  0x02
74#define ROAR_CODEC_PCM_S_PDP 0x03
75
76#define ROAR_CODEC_PCM_U_LE  (ROAR_CODEC_PCM_S_LE  | ROAR_CODEC_UNSIGNED)
77#define ROAR_CODEC_PCM_U_BE  (ROAR_CODEC_PCM_S_BE  | ROAR_CODEC_UNSIGNED)
78#define ROAR_CODEC_PCM_U_PDP (ROAR_CODEC_PCM_S_PDP | ROAR_CODEC_UNSIGNED)
79
80#define ROAR_CODEC_MIDI_FILE    0x08
81
82#define ROAR_CODEC_OGG_VORBIS   0x10
83#define ROAR_CODEC_FLAC         0x11 /* native FLAC without Ogg container */
84#define ROAR_CODEC_OGG_SPEEX    0x12
85/* #define ROAR_CODEC_CELT/OGG_CELT 0x13 Reserved for CELT */
86#define ROAR_CODEC_OGG_FLAC     0x14
87#define ROAR_CODEC_OGG_GENERAL  0x15
88
89#define ROAR_CODEC_ROAR_CELT    0x1a
90#define ROAR_CODEC_ROAR_SPEEX   0x1b
91
92
93#define ROAR_CODEC_RIFF_WAVE    0x20
94
95#if BYTE_ORDER == BIG_ENDIAN
96
97#define ROAR_CODEC_DEFAULT ROAR_CODEC_PCM_BE
98#define ROAR_BE2DEF(x) (x)
99
100#elif BYTE_ORDER == LITTLE_ENDIAN
101
102#define ROAR_CODEC_DEFAULT ROAR_CODEC_PCM_LE
103#define ROAR_LE2DEF(x) (x)
104
105#else
106
107#define ROAR_CODEC_DEFAULT ROAR_CODEC_PCM_PDP
108#define ROAR_PDP2DEF(x) (x)
109
110#endif
111
112
113#define ROAR_CODEC_NATIVE ROAR_CODEC_DEFAULT
114
115#define ROAR_BITS_MAX             32
116
117#define ROAR_BITS_DEFAULT         16
118#define ROAR_CHANNELS_DEFAULT      2
119#define ROAR_RATE_DEFAULT      44100
120
121#define ROAR_MAX_CHANNELS         64
122
123#define ROAR_SET_VOL_ALL           1
124#define ROAR_SET_VOL_ONE           2
125
126
127#define ROAR_SPEEX_MAX_CC          256
128#define ROAR_SPEEX_MAGIC           "RoarSpeex"
129#define ROAR_SPEEX_MAGIC_LEN       9
130#define ROAR_SPEEX_MODE_NB         1
131#define ROAR_SPEEX_MODE_WB         2
132#define ROAR_SPEEX_MODE_UWB        3
133
134#define ROAR_CELT_MAGIC            "RoarCELT0"
135#define ROAR_CELT_MAGIC_LEN        9
136
137struct roar_audio_info {
138 unsigned int rate;
139 unsigned int bits;
140 unsigned int channels;
141 unsigned int codec;
142};
143
144struct roar_mixer_settings {
145 //unsigned      channels;
146 roar_intm16   scale;
147 roar_intm16   rpg_mul; // rpg = ReplayGain
148 roar_intm16   rpg_div;
149 roar_intm16   mixer[ROAR_MAX_CHANNELS];
150};
151
152#endif
153
154//ll
Note: See TracBrowser for help on using the repository browser.