From 581174ef98e92de89244412ddc94ae93d172e69c Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 24 Apr 2021 09:03:14 -0700 Subject: Use the DeviceBase for the backend --- alc/backends/oboe.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'alc/backends/oboe.cpp') diff --git a/alc/backends/oboe.cpp b/alc/backends/oboe.cpp index b94a0882..d82db834 100644 --- a/alc/backends/oboe.cpp +++ b/alc/backends/oboe.cpp @@ -18,7 +18,7 @@ constexpr char device_name[] = "Oboe Default"; struct OboePlayback final : public BackendBase, public oboe::AudioStreamCallback { - OboePlayback(ALCdevice *device) : BackendBase{device} { } + OboePlayback(DeviceBase *device) : BackendBase{device} { } oboe::ManagedStream mStream; @@ -221,7 +221,7 @@ void OboePlayback::stop() struct OboeCapture final : public BackendBase { - OboeCapture(ALCdevice *device) : BackendBase{device} { } + OboeCapture(DeviceBase *device) : BackendBase{device} { } oboe::ManagedStream mStream; @@ -368,7 +368,7 @@ std::string OboeBackendFactory::probe(BackendType type) return std::string{}; } -BackendPtr OboeBackendFactory::createBackend(ALCdevice *device, BackendType type) +BackendPtr OboeBackendFactory::createBackend(DeviceBase *device, BackendType type) { if(type == BackendType::Playback) return BackendPtr{new OboePlayback{device}}; -- cgit v1.2.3