aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends/oboe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alc/backends/oboe.cpp')
-rw-r--r--alc/backends/oboe.cpp6
1 files changed, 3 insertions, 3 deletions
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}};