aboutsummaryrefslogtreecommitdiffstats
path: root/al
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-03-03 20:44:19 -0800
committerChris Robinson <[email protected]>2020-03-03 20:44:19 -0800
commit08dc831e0e664e2cb6788ee09934b473b57d0927 (patch)
treee6e7d991e505064dd35b8b78d490a5f9f25c8bbe /al
parentaccc1ec1c8bcb241dc4b71b97d8110ff8973d190 (diff)
Avoid unnecessarily reclearing some variables
Diffstat (limited to 'al')
-rw-r--r--al/source.cpp87
1 files changed, 36 insertions, 51 deletions
diff --git a/al/source.cpp b/al/source.cpp
index 39ae8b8e..0d342697 100644
--- a/al/source.cpp
+++ b/al/source.cpp
@@ -180,16 +180,13 @@ void UpdateSourceProps(const ALsource *source, ALvoice *voice, ALCcontext *conte
int64_t GetSourceSampleOffset(ALsource *Source, ALCcontext *context, nanoseconds *clocktime)
{
ALCdevice *device{context->mDevice.get()};
- const ALbufferlistitem *Current;
- uint64_t readPos;
+ const ALbufferlistitem *Current{};
+ uint64_t readPos{};
ALuint refcount;
ALvoice *voice;
do {
- Current = nullptr;
- readPos = 0;
refcount = device->waitForMix();
-
*clocktime = GetDeviceClockTime(device);
voice = GetSourceVoice(Source, context);
if(voice)
@@ -203,18 +200,16 @@ int64_t GetSourceSampleOffset(ALsource *Source, ALCcontext *context, nanoseconds
std::atomic_thread_fence(std::memory_order_acquire);
} while(refcount != device->MixCount.load(std::memory_order_relaxed));
- if(voice)
+ if(!voice)
+ return 0;
+
+ const ALbufferlistitem *BufferList{Source->queue};
+ while(BufferList && BufferList != Current)
{
- const ALbufferlistitem *BufferList{Source->queue};
- while(BufferList && BufferList != Current)
- {
- readPos += uint64_t{BufferList->mSampleLen} << 32;
- BufferList = BufferList->mNext.load(std::memory_order_relaxed);
- }
- readPos = minu64(readPos, 0x7fffffffffffffff_u64);
+ readPos += uint64_t{BufferList->mSampleLen} << 32;
+ BufferList = BufferList->mNext.load(std::memory_order_relaxed);
}
-
- return static_cast<int64_t>(readPos);
+ return static_cast<int64_t>(minu64(readPos, 0x7fffffffffffffff_u64));
}
/* GetSourceSecOffset
@@ -222,19 +217,16 @@ int64_t GetSourceSampleOffset(ALsource *Source, ALCcontext *context, nanoseconds
* Gets the current read offset for the given Source, in seconds. The offset is
* relative to the start of the queue (not the start of the current buffer).
*/
-ALdouble GetSourceSecOffset(ALsource *Source, ALCcontext *context, nanoseconds *clocktime)
+double GetSourceSecOffset(ALsource *Source, ALCcontext *context, nanoseconds *clocktime)
{
ALCdevice *device{context->mDevice.get()};
- const ALbufferlistitem *Current;
- uint64_t readPos;
+ const ALbufferlistitem *Current{};
+ uint64_t readPos{};
ALuint refcount;
ALvoice *voice;
do {
- Current = nullptr;
- readPos = 0;
refcount = device->waitForMix();
-
*clocktime = GetDeviceClockTime(device);
voice = GetSourceVoice(Source, context);
if(voice)
@@ -247,29 +239,25 @@ ALdouble GetSourceSecOffset(ALsource *Source, ALCcontext *context, nanoseconds *
std::atomic_thread_fence(std::memory_order_acquire);
} while(refcount != device->MixCount.load(std::memory_order_relaxed));
- ALdouble offset{0.0};
- if(voice)
- {
- const ALbufferlistitem *BufferList{Source->queue};
- const ALbuffer *BufferFmt{nullptr};
- while(BufferList && BufferList != Current)
- {
- if(!BufferFmt) BufferFmt = BufferList->mBuffer;
- readPos += uint64_t{BufferList->mSampleLen} << FRACTIONBITS;
- BufferList = BufferList->mNext.load(std::memory_order_relaxed);
- }
+ if(!voice)
+ return 0.0f;
- while(BufferList && !BufferFmt)
- {
- BufferFmt = BufferList->mBuffer;
- BufferList = BufferList->mNext.load(std::memory_order_relaxed);
- }
- assert(BufferFmt != nullptr);
-
- offset = static_cast<ALdouble>(readPos) / ALdouble{FRACTIONONE} / BufferFmt->Frequency;
+ const ALbufferlistitem *BufferList{Source->queue};
+ const ALbuffer *BufferFmt{nullptr};
+ while(BufferList && BufferList != Current)
+ {
+ if(!BufferFmt) BufferFmt = BufferList->mBuffer;
+ readPos += uint64_t{BufferList->mSampleLen} << FRACTIONBITS;
+ BufferList = BufferList->mNext.load(std::memory_order_relaxed);
+ }
+ while(BufferList && !BufferFmt)
+ {
+ BufferFmt = BufferList->mBuffer;
+ BufferList = BufferList->mNext.load(std::memory_order_relaxed);
}
+ assert(BufferFmt != nullptr);
- return offset;
+ return static_cast<double>(readPos) / double{FRACTIONONE} / BufferFmt->Frequency;
}
/* GetSourceOffset
@@ -278,20 +266,17 @@ ALdouble GetSourceSecOffset(ALsource *Source, ALCcontext *context, nanoseconds *
* (Bytes, Samples or Seconds). The offset is relative to the start of the
* queue (not the start of the current buffer).
*/
-ALdouble GetSourceOffset(ALsource *Source, ALenum name, ALCcontext *context)
+double GetSourceOffset(ALsource *Source, ALenum name, ALCcontext *context)
{
ALCdevice *device{context->mDevice.get()};
- const ALbufferlistitem *Current;
- ALuint readPos;
- ALuint readPosFrac;
+ const ALbufferlistitem *Current{};
+ ALuint readPos{};
+ ALuint readPosFrac{};
ALuint refcount;
ALvoice *voice;
do {
- Current = nullptr;
- readPos = readPosFrac = 0;
refcount = device->waitForMix();
-
voice = GetSourceVoice(Source, context);
if(voice)
{
@@ -303,8 +288,8 @@ ALdouble GetSourceOffset(ALsource *Source, ALenum name, ALCcontext *context)
std::atomic_thread_fence(std::memory_order_acquire);
} while(refcount != device->MixCount.load(std::memory_order_relaxed));
- ALdouble offset{0.0};
- if(!voice) return offset;
+ if(!voice)
+ return 0.0;
const ALbufferlistitem *BufferList{Source->queue};
const ALbuffer *BufferFmt{nullptr};
@@ -324,6 +309,7 @@ ALdouble GetSourceOffset(ALsource *Source, ALenum name, ALCcontext *context)
}
assert(BufferFmt != nullptr);
+ double offset{};
switch(name)
{
case AL_SEC_OFFSET:
@@ -360,7 +346,6 @@ ALdouble GetSourceOffset(ALsource *Source, ALenum name, ALCcontext *context)
}
break;
}
-
return offset;
}