From dd3abd0f164dd3d27d3eb641370fae27f52960b7 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 26 Jan 2012 22:33:36 -0800 Subject: [PATCH] Use sizeof(ALfloat) when finding the max stepping value The mixer always reads from floats, so the size of the storage type is unimportant. --- Alc/ALu.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Alc/ALu.c b/Alc/ALu.c index 62cc36c4..36229cfb 100644 --- a/Alc/ALu.c +++ b/Alc/ALu.c @@ -138,8 +138,8 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext) ALbuffer *ALBuffer; if((ALBuffer=BufferListItem->buffer) != NULL) { - ALint maxstep = STACK_DATA_SIZE / ALSource->NumChannels / - ALSource->SampleSize; + ALsizei maxstep = STACK_DATA_SIZE/sizeof(ALfloat) / + ALSource->NumChannels; maxstep -= ResamplerPadding[Resampler] + ResamplerPrePadding[Resampler] + 1; maxstep = mini(maxstep, INT_MAX>>FRACTIONBITS); @@ -643,8 +643,8 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext) ALbuffer *ALBuffer; if((ALBuffer=BufferListItem->buffer) != NULL) { - ALint maxstep = STACK_DATA_SIZE / ALSource->NumChannels / - ALSource->SampleSize; + ALsizei maxstep = STACK_DATA_SIZE/sizeof(ALfloat) / + ALSource->NumChannels; maxstep -= ResamplerPadding[Resampler] + ResamplerPrePadding[Resampler] + 1; maxstep = mini(maxstep, INT_MAX>>FRACTIONBITS); -- 2.11.4.GIT