comparison ext/openal-soft/include/AL/alext.h @ 0:4a0efb7baf70

* Datasets becomes the new trunk and retires after that :-)
author mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
date Sun, 29 Jun 2008 18:44:17 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4a0efb7baf70
1 /**
2 * OpenAL cross platform audio library
3 * Copyright (C) 2008 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
19 */
20
21 #ifndef AL_ALEXT_H
22 #define AL_ALEXT_H
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28 #ifndef AL_EXT_float32
29 #define AL_EXT_float32 1
30 #define AL_FORMAT_MONO_FLOAT32 0x10010
31 #define AL_FORMAT_STEREO_FLOAT32 0x10011
32 #endif
33
34 #ifndef AL_LOKI_quadriphonic
35 #define AL_LOKI_quadriphonic 1
36 #define AL_FORMAT_QUAD8_LOKI 0x10004
37 #define AL_FORMAT_QUAD16_LOKI 0x10005
38 #endif
39
40 #ifndef AL_EXT_MCFORMATS
41 #define AL_EXT_MCFORMATS 1
42 #define AL_FORMAT_QUAD8 0x1204
43 #define AL_FORMAT_QUAD16 0x1205
44 #define AL_FORMAT_QUAD32 0x1206
45 #define AL_FORMAT_REAR8 0x1207
46 #define AL_FORMAT_REAR16 0x1208
47 #define AL_FORMAT_REAR32 0x1209
48 #define AL_FORMAT_51CHN8 0x120A
49 #define AL_FORMAT_51CHN16 0x120B
50 #define AL_FORMAT_51CHN32 0x120C
51 #define AL_FORMAT_61CHN8 0x120D
52 #define AL_FORMAT_61CHN16 0x120E
53 #define AL_FORMAT_61CHN32 0x120F
54 #define AL_FORMAT_71CHN8 0x1210
55 #define AL_FORMAT_71CHN16 0x1211
56 #define AL_FORMAT_71CHN32 0x1212
57 #endif
58
59 #ifndef AL_EXT_IMA4
60 #define AL_EXT_IMA4 1
61 #define AL_FORMAT_MONO_IMA4 0x1300
62 #define AL_FORMAT_STEREO_IMA4 0x1301
63 #endif
64
65 #ifdef __cplusplus
66 }
67 #endif
68
69 #endif