aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-09-10 17:53:01 -0700
committerChris Robinson <[email protected]>2014-09-10 17:53:01 -0700
commit4e66224d6c14cffa2d6108bd0845f2dc35baec89 (patch)
treea617c215c32692d62cc3220618fedce5cc148868 /Alc/ALu.c
parent01adfde1994c5482305b5ce54ffd921988a84616 (diff)
Combine some fields into a struct
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index f3641226..81d52683 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -358,9 +358,9 @@ ALvoid CalcNonAttnSourceParams(ALvoice *voice, const ALsource *ALSource, const A
for(c = 0;c < num_channels;c++)
{
MixGains *gains = voice->Direct.Mix.Gains[c];
- for(i = 0;i < (ALint)Device->NumChan;i++)
+ for(i = 0;i < (ALint)Device->NumSpeakers;i++)
{
- enum Channel chan = Device->Speaker2Chan[i];
+ enum Channel chan = Device->Speaker[i].ChanName;
if(chan == chans[c].channel)
{
gains[chan].Target = DryGain;
@@ -444,7 +444,7 @@ ALvoid CalcNonAttnSourceParams(ALvoice *voice, const ALsource *ALSource, const A
gains[j].Target = 0.0f;
}
- DryGain *= lerp(1.0f, 1.0f/sqrtf((float)Device->NumChan), hwidth/F_PI);
+ DryGain *= lerp(1.0f, 1.0f/sqrtf((float)Device->NumSpeakers), hwidth/F_PI);
for(c = 0;c < num_channels;c++)
{
MixGains *gains = voice->Direct.Mix.Gains[c];
@@ -984,10 +984,10 @@ ALvoid CalcSourceParams(ALvoice *voice, const ALsource *ALSource, const ALCconte
/* Adjustment for vertical offsets. Not the greatest, but simple
* enough. */
- AmbientGain = DryGain * sqrtf(1.0f/Device->NumChan) * (1.0f-DirGain);
- for(i = 0;i < (ALint)Device->NumChan;i++)
+ AmbientGain = DryGain * sqrtf(1.0f/Device->NumSpeakers) * (1.0f-DirGain);
+ for(i = 0;i < (ALint)Device->NumSpeakers;i++)
{
- enum Channel chan = Device->Speaker2Chan[i];
+ enum Channel chan = Device->Speaker[i].ChanName;
gains[chan].Target = maxf(gains[chan].Target, AmbientGain);
}