diff options
author | Chris Robinson <[email protected]> | 2010-08-07 00:38:02 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-08-07 00:38:02 -0700 |
commit | f4304ca062564bbe8604d734524f4e58f506fce7 (patch) | |
tree | 693deebc01a4d027d8533294125c4ef74ec12c05 /Alc/mixer.c | |
parent | 044662e4b709e0c446e16a849088c418c91d205c (diff) |
Calculate the actual stepping value in the source update method
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 51 |
1 files changed, 19 insertions, 32 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index 54ec28be..1d4c388e 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -109,34 +109,11 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext, ALuint DeviceFreq; ALint increment; ALuint DataPosInt, DataPosFrac; - ALuint Channels, Bytes; - ALuint Frequency; resampler_t Resampler; ALuint BuffersPlayed; ALboolean Looping; - ALfloat Pitch; ALenum State; - DeviceFreq = ALContext->Device->Frequency; - - /* Find buffer format */ - Frequency = 0; - Channels = 0; - Bytes = 0; - BufferListItem = ALSource->queue; - while(BufferListItem != NULL) - { - ALbuffer *ALBuffer; - if((ALBuffer=BufferListItem->buffer) != NULL) - { - Channels = aluChannelsFromFormat(ALBuffer->format); - Bytes = aluBytesFromFormat(ALBuffer->format); - Frequency = ALBuffer->frequency; - break; - } - BufferListItem = BufferListItem->next; - } - if(ALSource->NeedsUpdate) { ALsource_Update(ALSource, ALContext); @@ -151,12 +128,6 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext, DataPosFrac = ALSource->position_fraction; Looping = ALSource->bLooping; - /* Compute 18.14 fixed point step */ - Pitch = (ALSource->Params.Pitch*Frequency) / DeviceFreq; - if(Pitch > (float)MAX_PITCH) Pitch = (float)MAX_PITCH; - increment = (ALint)(Pitch*(ALfloat)(1L<<FRACTIONBITS)); - if(increment <= 0) increment = (1<<FRACTIONBITS); - if(ALSource->FirstStart) { for(i = 0;i < OUTPUTCHANNELS;i++) @@ -173,6 +144,8 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext, } /* Compute the gain steps for each output channel */ + DeviceFreq = ALContext->Device->Frequency; + rampLength = DeviceFreq * MIN_RAMP_LENGTH / 1000; rampLength = max(rampLength, SamplesToDo); @@ -199,11 +172,12 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext, j = 0; do { + const ALbuffer *ALBuffer; ALfloat *Data = NULL; + ALuint DataSize = 0; ALuint LoopStart = 0; ALuint LoopEnd = 0; - ALuint DataSize = 0; - ALbuffer *ALBuffer; + ALuint Channels, Bytes; ALuint BufferSize; /* Get buffer info */ @@ -211,9 +185,11 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext, { Data = ALBuffer->data; DataSize = ALBuffer->size; - DataSize /= Channels * Bytes; + DataSize /= aluFrameSizeFromFormat(ALBuffer->format); LoopStart = ALBuffer->LoopStart; LoopEnd = ALBuffer->LoopEnd; + Channels = aluChannelsFromFormat(ALBuffer->format); + Bytes = aluBytesFromFormat(ALBuffer->format); } if(Looping && ALSource->lSourceType == AL_STATIC) @@ -255,6 +231,17 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext, else memset(&Data[DataSize*Channels], 0, (BUFFER_PADDING*Channels*Bytes)); + /* 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; + } + /* Figure out how many samples we can mix. */ DataSize64 = LoopEnd; DataSize64 <<= FRACTIONBITS; |