2007-11-13 18:02:18 -08:00
|
|
|
#ifndef _ALU_H_
|
|
|
|
#define _ALU_H_
|
|
|
|
|
|
|
|
#include "AL/al.h"
|
|
|
|
#include "AL/alc.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2008-02-06 22:18:50 -08:00
|
|
|
extern ALboolean DuplicateStereo;
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
__inline ALuint aluBytesFromFormat(ALenum format);
|
|
|
|
__inline ALuint aluChannelsFromFormat(ALenum format);
|
|
|
|
ALvoid aluMixData(ALCcontext *context,ALvoid *buffer,ALsizei size,ALenum format);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|