aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alSource.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-04-30 09:33:00 -0700
committerChris Robinson <[email protected]>2012-04-30 09:33:00 -0700
commit010a66487d9b92f21d5b41c2d5956d8b79b58324 (patch)
tree3f4111c11cac98ce76e93d706328dddae0d8712d /OpenAL32/Include/alSource.h
parentaed35fd811f7aa5f1a9d2edb499e43d490ede96e (diff)
Use 2 chained one-pole filters for the wet path
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r--OpenAL32/Include/alSource.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index 88ced697..f76f618d 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -63,9 +63,9 @@ typedef struct SendParams {
* output buffer. */
ALfloat Gain;
- /* A low-pass filter, using a one-pole filter. */
+ /* A low-pass filter, using 2 chained one-pole filters. */
FILTER iirFilter;
- ALfloat history[MAXCHANNELS];
+ ALfloat history[MAXCHANNELS*2];
} SendParams;