aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-08-07 05:43:16 -0700
committerChris Robinson <[email protected]>2010-08-07 05:43:16 -0700
commit5f22d30fc91e677933e12034979f42f74c4f653d (patch)
tree71e9f5de28e2f6b1cb21ccf0dea02289a9081ac3 /Alc
parentd6dc855511982a76be8289966842030d135a8578 (diff)
Calculate the source stepping value with the param calculations
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALu.c45
-rw-r--r--Alc/mixer.c15
2 files changed, 42 insertions, 18 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index effa5e2d..b14d40bc 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -84,6 +84,7 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
ALfloat WetGain[MAX_SENDS];
ALfloat WetGainHF[MAX_SENDS];
ALint NumSends, Frequency;
+ ALfloat Pitch;
ALfloat cw;
ALint i;
@@ -100,19 +101,30 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
MaxVolume = ALSource->flMaxGain;
//1. Multi-channel buffers always play "normal"
+ Pitch = ALSource->flPitch;
BufferListItem = ALSource->queue;
while(BufferListItem != NULL)
{
ALbuffer *ALBuffer;
if((ALBuffer=BufferListItem->buffer) != NULL)
{
- ALSource->Params.Pitch = ALSource->flPitch*ALBuffer->frequency /
- Frequency;
+ Pitch = Pitch * ALBuffer->frequency / Frequency;
break;
}
BufferListItem = BufferListItem->next;
}
+ if(Pitch > (float)MAX_PITCH)
+ ALSource->Params.Step = MAX_PITCH<<FRACTIONBITS;
+ else if(!(Pitch > 0.0f))
+ ALSource->Params.Step = 1<<FRACTIONBITS;
+ else
+ {
+ ALSource->Params.Step = Pitch*(1<<FRACTIONBITS);
+ if(ALSource->Params.Step == 0)
+ ALSource->Params.Step = 1;
+ }
+
DryGain = SourceVolume;
DryGain = __min(DryGain,MaxVolume);
DryGain = __max(DryGain,MinVolume);
@@ -178,6 +190,7 @@ ALvoid CalcNonAttnStereoSourceParams(ALsource *ALSource, const ALCcontext *ALCon
ALfloat WetGainHF[MAX_SENDS];
ALint NumSends, Frequency;
ALboolean DupStereo;
+ ALfloat Pitch;
ALenum Format;
ALfloat cw;
ALint i;
@@ -197,19 +210,30 @@ ALvoid CalcNonAttnStereoSourceParams(ALsource *ALSource, const ALCcontext *ALCon
MaxVolume = ALSource->flMaxGain;
//1. Multi-channel buffers always play "normal"
+ Pitch = ALSource->flPitch;
BufferListItem = ALSource->queue;
while(BufferListItem != NULL)
{
ALbuffer *ALBuffer;
if((ALBuffer=BufferListItem->buffer) != NULL)
{
- ALSource->Params.Pitch = ALSource->flPitch*ALBuffer->frequency /
- Frequency;
+ Pitch = Pitch * ALBuffer->frequency / Frequency;
break;
}
BufferListItem = BufferListItem->next;
}
+ if(Pitch > (float)MAX_PITCH)
+ ALSource->Params.Step = MAX_PITCH<<FRACTIONBITS;
+ else if(!(Pitch > 0.0f))
+ ALSource->Params.Step = 1<<FRACTIONBITS;
+ else
+ {
+ ALSource->Params.Step = Pitch*(1<<FRACTIONBITS);
+ if(ALSource->Params.Step == 0)
+ ALSource->Params.Step = 1;
+ }
+
DryGain = SourceVolume;
DryGain = __min(DryGain,MaxVolume);
DryGain = __max(DryGain,MinVolume);
@@ -663,12 +687,23 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
ALbuffer *ALBuffer;
if((ALBuffer=BufferListItem->buffer) != NULL)
{
- ALSource->Params.Pitch = Pitch*ALBuffer->frequency / Frequency;
+ Pitch = Pitch * ALBuffer->frequency / Frequency;
break;
}
BufferListItem = BufferListItem->next;
}
+ if(Pitch > (float)MAX_PITCH)
+ ALSource->Params.Step = MAX_PITCH<<FRACTIONBITS;
+ else if(!(Pitch > 0.0f))
+ ALSource->Params.Step = 1<<FRACTIONBITS;
+ else
+ {
+ ALSource->Params.Step = Pitch*(1<<FRACTIONBITS);
+ if(ALSource->Params.Step == 0)
+ ALSource->Params.Step = 1;
+ }
+
// Use energy-preserving panning algorithm for multi-speaker playback
length = __max(OrigDist, MinDist);
if(length > 0.0f)
diff --git a/Alc/mixer.c b/Alc/mixer.c
index 6b0406be..64b4a13a 100644
--- a/Alc/mixer.c
+++ b/Alc/mixer.c
@@ -36,9 +36,6 @@
#include "alu.h"
#include "bs2b.h"
-#define FRACTIONBITS 14
-#define FRACTIONMASK ((1L<<FRACTIONBITS)-1)
-#define MAX_PITCH 65536
/* Minimum ramp length in milliseconds. The value below was chosen to
* adequately reduce clicks and pops from harsh gain changes. */
@@ -156,16 +153,8 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext,
wetGainStep[i] = (ALSource->Params.WetGains[i]-WetSend[i]) /
rampLength;
- /* Compute 18.14 fixed point step */
- if(ALSource->Params.Pitch > (float)MAX_PITCH)
- increment = MAX_PITCH << FRACTIONBITS;
- else if(!(ALSource->Params.Pitch > 0.f))
- increment = (1<<FRACTIONBITS);
- else
- {
- increment = (ALint)(ALSource->Params.Pitch*(1L<<FRACTIONBITS));
- if(increment == 0) increment = 1;
- }
+ /* Get fixed point step */
+ increment = ALSource->Params.Step;
DryFilter = &ALSource->Params.iirFilter;
for(i = 0;i < MAX_SENDS;i++)