Add an option for duplicating stereo sources on the back speakers
[openal-soft/openal-hmr.git] / OpenAL32 / Include / alu.h
blob6fab1fae31427edbfc4c687e2a22ff871e6ea561
1 #ifndef _ALU_H_
2 #define _ALU_H_
4 #include "AL/al.h"
5 #include "AL/alc.h"
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
11 extern ALboolean DuplicateStereo;
13 __inline ALuint aluBytesFromFormat(ALenum format);
14 __inline ALuint aluChannelsFromFormat(ALenum format);
15 ALvoid aluMixData(ALCcontext *context,ALvoid *buffer,ALsizei size,ALenum format);
17 #ifdef __cplusplus
19 #endif
21 #endif