diff options
author | Chris Robinson <[email protected]> | 2009-11-26 00:39:32 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-11-26 00:39:32 -0800 |
commit | 69f9ab88b9b9ad1b14bd1a143af230eab2a15b61 (patch) | |
tree | 0efc56cabfca9eaf7453fdd510298268935a0c4e /OpenAL32/Include/alSource.h | |
parent | 1a0676f0eb5f170e42333da38b1d4fb6170fe543 (diff) |
Send multi-channel sources to auxiliary effect slots
They are downmixed to mono using a volume-preserving scalar, and passed
through a 1-pole low-pass filter (not chained)
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 1e54031b..3889c85c 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -93,7 +93,7 @@ typedef struct ALsource struct { FILTER iirFilter; - ALfloat history[2]; + ALfloat history[OUTPUTCHANNELS]; } Send[MAX_SENDS]; FILTER iirFilter; |