diff options
author | Chris Robinson <[email protected]> | 2014-08-20 21:35:18 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-08-21 00:29:42 -0700 |
commit | b92e643e9742765acd364bcbe30ebaedbe50400f (patch) | |
tree | e65318fdffb9105d9b247f425e09b283c855552d /OpenAL32 | |
parent | 3a6baab495d92afd17fccd61b87ae526235fce88 (diff) |
Use a NULL source for inactive activesources
Also only access the activesource's source field once per update.
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alSource.h | 7 | ||||
-rw-r--r-- | OpenAL32/Include/alu.h | 10 | ||||
-rw-r--r-- | OpenAL32/alSource.c | 54 | ||||
-rw-r--r-- | OpenAL32/alState.c | 10 |
4 files changed, 45 insertions, 36 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 8d74fc54..173db94e 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -11,6 +11,9 @@ extern "C" { #endif +struct ALbuffer; +struct ALsource; + extern enum Resampler DefaultResampler; extern const ALsizei ResamplerPadding[ResamplerMax]; @@ -25,10 +28,10 @@ typedef struct ALbufferlistitem { typedef struct ALactivesource { - struct ALsource *Source; + struct ALsource *volatile Source; /** Method to update mixing parameters. */ - ALvoid (*Update)(struct ALactivesource *self, const ALCcontext *context); + ALvoid (*Update)(struct ALactivesource *self, const struct ALsource *source, const ALCcontext *context); /** Current target parameters used for mixing. */ ALint Step; diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 7727c666..ac09f89f 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -41,6 +41,10 @@ extern "C" { #endif +struct ALsource; +struct ALactivesource; + + enum ActiveFilters { AF_None = 0, AF_LowPass = 1, @@ -216,10 +220,10 @@ inline void SetGains(const ALCdevice *device, ALfloat ingain, ALfloat gains[MaxC } -ALvoid CalcSourceParams(struct ALactivesource *src, const ALCcontext *ALContext); -ALvoid CalcNonAttnSourceParams(struct ALactivesource *src, const ALCcontext *ALContext); +ALvoid CalcSourceParams(struct ALactivesource *src, const struct ALsource *source, const ALCcontext *ALContext); +ALvoid CalcNonAttnSourceParams(struct ALactivesource *src, const struct ALsource *source, const ALCcontext *ALContext); -ALvoid MixSource(struct ALactivesource *src, ALCdevice *Device, ALuint SamplesToDo); +ALvoid MixSource(struct ALactivesource *src, struct ALsource *source, ALCdevice *Device, ALuint SamplesToDo); ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size); /* Caller must lock the device. */ diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 27f3eaa1..44969cbf 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -1400,14 +1400,9 @@ AL_API ALvoid AL_APIENTRY alDeleteSources(ALsizei n, const ALuint *sources) srclistend = srclist + context->ActiveSourceCount; while(srclist != srclistend) { - if((*srclist)->Source == Source) - { - ALactivesource *temp = *(--srclistend); - *srclistend = *srclist; - *srclist = temp; - --(context->ActiveSourceCount); + ALsource *old = Source; + if(COMPARE_EXCHANGE(&(*srclist)->Source, &old, NULL)) break; - } srclist++; } UnlockContext(context); @@ -2456,7 +2451,7 @@ ALvoid SetSourceState(ALsource *Source, ALCcontext *Context, ALenum state) ALCdevice *device = Context->Device; ALbufferlistitem *BufferList; ALactivesource *src = NULL; - ALsizei j, k; + ALsizei i; /* Check that there is a queue containing at least one valid, non zero * length Buffer. */ @@ -2488,44 +2483,53 @@ ALvoid SetSourceState(ALsource *Source, ALCcontext *Context, ALenum state) if(!BufferList || !device->Connected) goto do_stop; - for(j = 0;j < Context->ActiveSourceCount;j++) + for(i = 0;i < Context->ActiveSourceCount;i++) { - if(Context->ActiveSources[j]->Source == Source) + if(Context->ActiveSources[i]->Source == Source) { - src = Context->ActiveSources[j]; + src = Context->ActiveSources[i]; break; } } if(src == NULL) { - src = Context->ActiveSources[Context->ActiveSourceCount]; - if(src == NULL) + for(i = 0;i < Context->ActiveSourceCount;i++) { - src = al_malloc(16, sizeof(src[0])); - Context->ActiveSources[Context->ActiveSourceCount] = src; + ALsource *old = NULL; + src = Context->ActiveSources[i]; + if(COMPARE_EXCHANGE(&src->Source, &old, Source)) + break; + } + if(i == Context->ActiveSourceCount) + { + src = Context->ActiveSources[Context->ActiveSourceCount]; + if(src == NULL) + { + src = al_malloc(16, sizeof(src[0])); + Context->ActiveSources[Context->ActiveSourceCount] = src; + } + Context->ActiveSourceCount++; } memset(src, 0, sizeof(*src)); - Context->ActiveSourceCount++; src->Source = Source; } else { - ALuint i; - src->Direct.Moving = AL_FALSE; src->Direct.Counter = 0; - for(j = 0;j < MAX_INPUT_CHANNELS;j++) + for(i = 0;i < MAX_INPUT_CHANNELS;i++) { - for(k = 0;k < SRC_HISTORY_LENGTH;k++) - src->Direct.Mix.Hrtf.State[j].History[k] = 0.0f; - for(k = 0;k < HRIR_LENGTH;k++) + ALsizei j; + for(j = 0;j < SRC_HISTORY_LENGTH;j++) + src->Direct.Mix.Hrtf.State[i].History[j] = 0.0f; + for(j = 0;j < HRIR_LENGTH;j++) { - src->Direct.Mix.Hrtf.State[j].Values[k][0] = 0.0f; - src->Direct.Mix.Hrtf.State[j].Values[k][1] = 0.0f; + src->Direct.Mix.Hrtf.State[i].Values[j][0] = 0.0f; + src->Direct.Mix.Hrtf.State[i].Values[j][1] = 0.0f; } } - for(i = 0;i < device->NumAuxSends;i++) + for(i = 0;i < (ALsizei)device->NumAuxSends;i++) { src->Send[i].Counter = 0; src->Send[i].Moving = AL_FALSE; diff --git a/OpenAL32/alState.c b/OpenAL32/alState.c index 4d7b00cf..699bea20 100644 --- a/OpenAL32/alState.c +++ b/OpenAL32/alState.c @@ -732,19 +732,17 @@ AL_API ALvoid AL_APIENTRY alDeferUpdatesSOFT(void) while(src != src_end) { ALsource *source = (*src)->Source; + if(!source) goto next; if(source->state != AL_PLAYING && source->state != AL_PAUSED) { - ALactivesource *temp = *(--src_end); - *src_end = *src; - *src = temp; - --(context->ActiveSourceCount); + (*src)->Source = NULL; continue; } if(ATOMIC_EXCHANGE(ALenum, &source->NeedsUpdate, AL_FALSE) || UpdateSources) - (*src)->Update(*src, context); - + (*src)->Update(*src, source, context); + next: src++; } |