diff options
author | Chris Robinson <[email protected]> | 2010-05-24 20:10:35 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-05-24 20:10:35 -0700 |
commit | ad2957ed984ff7710725cf0cce43490da41bd161 (patch) | |
tree | d172f2fd42ceafd47faa6072a31c7b4e1451b4e0 | |
parent | c469bfcb9e9495c9f4e529b536215ae3484761dd (diff) |
Reduce the mixing buffer size
-rw-r--r-- | OpenAL32/Include/alu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 62b6fbe7..57afe6c4 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -74,9 +74,9 @@ typedef enum { OUTPUTCHANNELS } Channel; -#define BUFFERSIZE 16384 +#define BUFFERSIZE 8192 -/* NOTE: The AL_FORMAT_REAR* enums aren't handled here be cause they're +/* NOTE: The AL_FORMAT_REAR* enums aren't handled here because they're * converted to AL_FORMAT_QUAD* when loaded */ static __inline ALuint aluBytesFromFormat(ALenum format) { |