diff options
author | Chris Robinson <[email protected]> | 2018-12-28 22:56:20 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-12-28 22:56:20 -0800 |
commit | 3d92e8c4df4ebaffbe44507f787f2382e3982c96 (patch) | |
tree | fe8f068a902d6b8f5f225120505529d1f6fe31cd /Alc/backends/base.cpp | |
parent | 67b874328d60062558eeb5068a3f79dab2b6f7e3 (diff) |
Convert the backends to use proper inheritence
Diffstat (limited to 'Alc/backends/base.cpp')
-rw-r--r-- | Alc/backends/base.cpp | 68 |
1 files changed, 24 insertions, 44 deletions
diff --git a/Alc/backends/base.cpp b/Alc/backends/base.cpp index 021a0f17..1fef0439 100644 --- a/Alc/backends/base.cpp +++ b/Alc/backends/base.cpp @@ -12,80 +12,60 @@ void ALCdevice_Lock(ALCdevice *device) -{ V0(device->Backend,lock)(); } +{ device->Backend->lock(); } void ALCdevice_Unlock(ALCdevice *device) -{ V0(device->Backend,unlock)(); } +{ device->Backend->unlock(); } ClockLatency GetClockLatency(ALCdevice *device) { - ClockLatency ret = V0(device->Backend,getClockLatency)(); + BackendBase *backend{device->Backend}; + ClockLatency ret{backend->getClockLatency()}; ret.Latency += device->FixedLatency; return ret; } -/* Base ALCbackend method implementations. */ -ALCbackend::ALCbackend(ALCdevice *device) noexcept : mDevice{device} +/* BackendBase method implementations. */ +BackendBase::BackendBase(ALCdevice *device) noexcept : mDevice{device} { } -ALCbackend::~ALCbackend() +BackendBase::~BackendBase() { } -ALCboolean ALCbackend_reset(ALCbackend* UNUSED(self)) -{ - return ALC_FALSE; -} +ALCboolean BackendBase::reset() +{ return ALC_FALSE; } -ALCenum ALCbackend_captureSamples(ALCbackend* UNUSED(self), void* UNUSED(buffer), ALCuint UNUSED(samples)) -{ - return ALC_INVALID_DEVICE; -} +ALCenum BackendBase::captureSamples(void* UNUSED(buffer), ALCuint UNUSED(samples)) +{ return ALC_INVALID_DEVICE; } -ALCuint ALCbackend_availableSamples(ALCbackend* UNUSED(self)) -{ - return 0; -} +ALCuint BackendBase::availableSamples() +{ return 0; } -ClockLatency ALCbackend_getClockLatency(ALCbackend *self) +ClockLatency BackendBase::getClockLatency() { - ALCdevice *device = self->mDevice; - ALuint refcount; ClockLatency ret; + ALuint refcount; do { - while(((refcount=device->MixCount.load(std::memory_order_acquire))&1)) + while(((refcount=mDevice->MixCount.load(std::memory_order_acquire))&1)) std::this_thread::yield(); - ret.ClockTime = GetDeviceClockTime(device); + ret.ClockTime = GetDeviceClockTime(mDevice); std::atomic_thread_fence(std::memory_order_acquire); - } while(refcount != device->MixCount.load(std::memory_order_relaxed)); + } while(refcount != mDevice->MixCount.load(std::memory_order_relaxed)); /* NOTE: The device will generally have about all but one periods filled at * any given time during playback. Without a more accurate measurement from * the output, this is an okay approximation. */ - ret.Latency = std::chrono::seconds{device->UpdateSize*maxi(device->NumUpdates-1, 0)}; - ret.Latency /= device->Frequency; + ret.Latency = std::chrono::seconds{mDevice->UpdateSize*maxi(mDevice->NumUpdates-1, 0)}; + ret.Latency /= mDevice->Frequency; return ret; } -void ALCbackend_lock(ALCbackend *self) -{ - try { - self->mMutex.lock(); - } - catch(...) { - std::terminate(); - } -} +void BackendBase::lock() noexcept +{ mMutex.lock(); } -void ALCbackend_unlock(ALCbackend *self) -{ - try { - self->mMutex.unlock(); - } - catch(...) { - std::terminate(); - } -} +void BackendBase::unlock() noexcept +{ mMutex.unlock(); } |