diff options
author | Chris Robinson <[email protected]> | 2010-01-12 02:22:38 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-01-12 02:22:38 -0800 |
commit | c924a50bed9454e6adfe8c81e47eb8b0b26d51f7 (patch) | |
tree | e93edf94ece73a34435045d9a7ae8887bacf9ea8 /OpenAL32/alSource.c | |
parent | 574792d2e1bf46f80fb257db6af68c47f5733b2e (diff) |
Don't use a flag to set an error when applying the source offset
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r-- | OpenAL32/alSource.c | 91 |
1 files changed, 48 insertions, 43 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 5ad255d6..441f8275 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -34,7 +34,7 @@ static ALvoid InitSourceParams(ALsource *pSource); static ALboolean GetSourceOffset(ALsource *pSource, ALenum eName, ALfloat *pflOffset, ALuint updateSize); -static ALvoid ApplyOffset(ALsource *pSource, ALboolean bUpdateContext); +static ALboolean ApplyOffset(ALsource *pSource); static ALint GetByteOffset(ALsource *pSource); ALAPI ALvoid ALAPIENTRY alGenSources(ALsizei n,ALuint *sources) @@ -380,7 +380,10 @@ ALAPI ALvoid ALAPIENTRY alSourcef(ALuint source, ALenum eParam, ALfloat flValue) pSource->lOffset = (ALint)flValue; if ((pSource->state == AL_PLAYING) || (pSource->state == AL_PAUSED)) - ApplyOffset(pSource, AL_TRUE); + { + if(ApplyOffset(pSource) == AL_FALSE) + alSetError(AL_INVALID_VALUE); + } } else alSetError(AL_INVALID_VALUE); @@ -635,7 +638,10 @@ ALAPI ALvoid ALAPIENTRY alSourcei(ALuint source,ALenum eParam,ALint lValue) pSource->lOffset = lValue; if(pSource->state == AL_PLAYING || pSource->state == AL_PAUSED) - ApplyOffset(pSource, AL_TRUE); + { + if(ApplyOffset(pSource) == AL_FALSE) + alSetError(AL_INVALID_VALUE); + } } else alSetError(AL_INVALID_VALUE); @@ -1387,7 +1393,7 @@ ALAPI ALvoid ALAPIENTRY alSourcePlayv(ALsizei n, const ALuint *pSourceList) // Check if an Offset has been set if(pSource->lOffset) - ApplyOffset(pSource, AL_FALSE); + ApplyOffset(pSource); if(pSource->BuffersPlayed == 0 && pSource->position == 0 && pSource->position_fraction == 0) @@ -1986,7 +1992,7 @@ static ALboolean GetSourceOffset(ALsource *pSource, ALenum eName, ALfloat *pflOf Apply a playback offset to the Source. This function will update the queue (to correctly mark buffers as 'pending' or 'processed' depending upon the new offset. */ -static void ApplyOffset(ALsource *pSource, ALboolean bUpdateContext) +static ALboolean ApplyOffset(ALsource *pSource) { ALbufferlistitem *pBufferList; ALbuffer *pBuffer; @@ -1996,50 +2002,46 @@ static void ApplyOffset(ALsource *pSource, ALboolean bUpdateContext) // Get true byte offset lByteOffset = GetByteOffset(pSource); - // If this is a valid offset apply it - if (lByteOffset != -1) - { - // Sort out the queue (pending and processed states) - pBufferList = pSource->queue; - lTotalBufferSize = 0; - pSource->BuffersPlayed = 0; - while (pBufferList) - { - pBuffer = pBufferList->buffer; - lBufferSize = pBuffer ? pBuffer->size : 0; + // If the offset is invalid, don't apply it + if(lByteOffset == -1) + return AL_FALSE; - if ((lTotalBufferSize + lBufferSize) <= lByteOffset) - { - // Offset is past this buffer so increment BuffersPlayed - pSource->BuffersPlayed++; - } - else if (lTotalBufferSize <= lByteOffset) - { - // Offset is within this buffer - // Set Current Buffer - pSource->Buffer = pBufferList->buffer; - - // SW Mixer Positions are in Samples - pSource->position = (lByteOffset - lTotalBufferSize) / - aluBytesFromFormat(pBuffer->format) / - aluChannelsFromFormat(pBuffer->format); - } + // Sort out the queue (pending and processed states) + pBufferList = pSource->queue; + lTotalBufferSize = 0; + pSource->BuffersPlayed = 0; - // Increment the TotalBufferSize - lTotalBufferSize += lBufferSize; + while(pBufferList) + { + pBuffer = pBufferList->buffer; + lBufferSize = pBuffer ? pBuffer->size : 0; - // Move on to next buffer in the Queue - pBufferList = pBufferList->next; + if(lTotalBufferSize+lBufferSize <= lByteOffset) + { + // Offset is past this buffer so increment BuffersPlayed + pSource->BuffersPlayed++; } - } - else - { - if (bUpdateContext) - alSetError(AL_INVALID_VALUE); + else if(lTotalBufferSize <= lByteOffset) + { + // Offset is within this buffer + // Set Current Buffer + pSource->Buffer = pBufferList->buffer; + + // SW Mixer Positions are in Samples + pSource->position = (lByteOffset - lTotalBufferSize) / + aluBytesFromFormat(pBuffer->format) / + aluChannelsFromFormat(pBuffer->format); + break; + } + + // Increment the TotalBufferSize + lTotalBufferSize += lBufferSize; + + // Move on to next buffer in the Queue + pBufferList = pBufferList->next; } - // Clear Offset - pSource->lOffset = 0; + return AL_TRUE; } @@ -2153,6 +2155,9 @@ static ALint GetByteOffset(ALsource *pSource) lByteOffset = -1; } + // Clear Offset + pSource->lOffset = 0; + return lByteOffset; } |