diff options
author | Chris Robinson <[email protected]> | 2013-07-23 00:13:15 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-07-23 00:13:15 -0700 |
commit | 94884ed04b88697acd851f1b4ab492221b809ad6 (patch) | |
tree | b657ae90b4362a89a6a18bdae3fb6c86ddc8e131 /Alc/mixer_sse.c | |
parent | 2219ce2475dff2b819599b447f9b014be8d3e398 (diff) |
Use a separate value for the maximum buffer channels
Unlike the device, input buffers are accessed based on channel numbers
instead of enums. This means the maximum number of channels they hold
depends on the number of channels any one format can have, rather than
the total number of recognized channels. Currently, this is 8 for 7.1.
Diffstat (limited to 'Alc/mixer_sse.c')
-rw-r--r-- | Alc/mixer_sse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/mixer_sse.c b/Alc/mixer_sse.c index f929469c..d348f9da 100644 --- a/Alc/mixer_sse.c +++ b/Alc/mixer_sse.c @@ -155,7 +155,7 @@ void MixDirect_SSE(const DirectParams *params, const ALfloat *restrict data, ALu __m128 gain; DrySend = params->Gains[srcchan][c]; - if(DrySend < 0.00001f) + if(!(DrySend > 0.00001f)) continue; if(OutPos == 0) @@ -189,7 +189,7 @@ void MixSend_SSE(const SendParams *params, const ALfloat *restrict data, __m128 gain; ALuint pos; - if(WetGain < 0.00001f) + if(!(WetGain > 0.00001f)) return; if(OutPos == 0) |