diff options
author | Chris Robinson <[email protected]> | 2010-12-01 18:33:17 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-12-01 18:33:17 -0800 |
commit | 9e8fb89a525c11685869d963c39e4f1076835d85 (patch) | |
tree | 5fdb70d80718e1ba7632e1b98fbb2fb4ffa0e883 /Alc/panning.c | |
parent | 14441e0e5377884100ed0d3ae3bb753632b896ae (diff) |
Rename OUTPUTCHANNELS to something more descriptive
Diffstat (limited to 'Alc/panning.c')
-rw-r--r-- | Alc/panning.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Alc/panning.c b/Alc/panning.c index 43c55cad..89d359f5 100644 --- a/Alc/panning.c +++ b/Alc/panning.c @@ -31,8 +31,8 @@ #include "AL/alc.h" #include "alu.h" -static void SetSpeakerArrangement(const char *name, ALfloat SpeakerAngle[OUTPUTCHANNELS], - Channel Speaker2Chan[OUTPUTCHANNELS], ALint chans) +static void SetSpeakerArrangement(const char *name, ALfloat SpeakerAngle[MAXCHANNELS], + Channel Speaker2Chan[MAXCHANNELS], ALint chans) { char layout_str[256]; char *confkey, *next; @@ -162,17 +162,17 @@ ALint aluCart2LUTpos(ALfloat re, ALfloat im) ALvoid aluInitPanning(ALCdevice *Device) { - ALfloat SpeakerAngle[OUTPUTCHANNELS]; - ALfloat (*Matrix)[OUTPUTCHANNELS]; + ALfloat SpeakerAngle[MAXCHANNELS]; + ALfloat (*Matrix)[MAXCHANNELS]; Channel *Speaker2Chan; ALfloat Alpha, Theta; ALfloat *PanningLUT; ALint pos, offset; ALuint s, s2; - for(s = 0;s < OUTPUTCHANNELS;s++) + for(s = 0;s < MAXCHANNELS;s++) { - for(s2 = 0;s2 < OUTPUTCHANNELS;s2++) + for(s2 = 0;s2 < MAXCHANNELS;s2++) Device->ChannelMatrix[s][s2] = ((s==s2) ? 1.0f : 0.0f); } @@ -313,18 +313,18 @@ ALvoid aluInitPanning(ALCdevice *Device) if(GetConfigValueBool(NULL, "scalemix", 0)) { ALfloat maxout = 1.0f; - for(s = 0;s < OUTPUTCHANNELS;s++) + for(s = 0;s < MAXCHANNELS;s++) { ALfloat out = 0.0f; - for(s2 = 0;s2 < OUTPUTCHANNELS;s2++) + for(s2 = 0;s2 < MAXCHANNELS;s2++) out += Device->ChannelMatrix[s2][s]; maxout = __max(maxout, out); } maxout = 1.0f/maxout; - for(s = 0;s < OUTPUTCHANNELS;s++) + for(s = 0;s < MAXCHANNELS;s++) { - for(s2 = 0;s2 < OUTPUTCHANNELS;s2++) + for(s2 = 0;s2 < MAXCHANNELS;s2++) Device->ChannelMatrix[s2][s] *= maxout; } } @@ -333,8 +333,8 @@ ALvoid aluInitPanning(ALCdevice *Device) for(pos = 0; pos < LUT_NUM; pos++) { /* clear all values */ - offset = OUTPUTCHANNELS * pos; - for(s = 0; s < OUTPUTCHANNELS; s++) + offset = MAXCHANNELS * pos; + for(s = 0; s < MAXCHANNELS; s++) PanningLUT[offset+s] = 0.0f; if(Device->NumChan == 1) |