123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- #include "config.h"
- #include <stdlib.h>
- #include "alMain.h"
- #include "backends/base.h"
- extern inline ALuint64 GetDeviceClockTime(ALCdevice *device);
- /* Base ALCbackend method implementations. */
- void ALCbackend_Construct(ALCbackend *self, ALCdevice *device)
- {
- int ret = almtx_init(&self->mMutex, almtx_recursive);
- assert(ret == althrd_success);
- self->mDevice = device;
- }
- void ALCbackend_Destruct(ALCbackend *self)
- {
- almtx_destroy(&self->mMutex);
- }
- ALCboolean ALCbackend_reset(ALCbackend* UNUSED(self))
- {
- return ALC_FALSE;
- }
- ALCenum ALCbackend_captureSamples(ALCbackend* UNUSED(self), void* UNUSED(buffer), ALCuint UNUSED(samples))
- {
- return ALC_INVALID_DEVICE;
- }
- ALCuint ALCbackend_availableSamples(ALCbackend* UNUSED(self))
- {
- return 0;
- }
- ClockLatency ALCbackend_getClockLatency(ALCbackend *self)
- {
- ALCdevice *device = self->mDevice;
- ClockLatency ret;
- almtx_lock(&self->mMutex);
- ret.ClockTime = GetDeviceClockTime(device);
- // TODO: Perhaps should be NumUpdates-1 worth of UpdateSize?
- ret.Latency = 0;
- almtx_unlock(&self->mMutex);
- return ret;
- }
- void ALCbackend_lock(ALCbackend *self)
- {
- int ret = almtx_lock(&self->mMutex);
- assert(ret == althrd_success);
- }
- void ALCbackend_unlock(ALCbackend *self)
- {
- int ret = almtx_unlock(&self->mMutex);
- assert(ret == althrd_success);
- }
- /* Base ALCbackendFactory method implementations. */
- void ALCbackendFactory_deinit(ALCbackendFactory* UNUSED(self))
- {
- }
- /* Wrappers to use an old-style backend with the new interface. */
- typedef struct PlaybackWrapper {
- DERIVE_FROM_TYPE(ALCbackend);
- const BackendFuncs *Funcs;
- } PlaybackWrapper;
- static void PlaybackWrapper_Construct(PlaybackWrapper *self, ALCdevice *device, const BackendFuncs *funcs);
- static DECLARE_FORWARD(PlaybackWrapper, ALCbackend, void, Destruct)
- static ALCenum PlaybackWrapper_open(PlaybackWrapper *self, const ALCchar *name);
- static void PlaybackWrapper_close(PlaybackWrapper *self);
- static ALCboolean PlaybackWrapper_reset(PlaybackWrapper *self);
- static ALCboolean PlaybackWrapper_start(PlaybackWrapper *self);
- static void PlaybackWrapper_stop(PlaybackWrapper *self);
- static DECLARE_FORWARD2(PlaybackWrapper, ALCbackend, ALCenum, captureSamples, void*, ALCuint)
- static DECLARE_FORWARD(PlaybackWrapper, ALCbackend, ALCuint, availableSamples)
- static DECLARE_FORWARD(PlaybackWrapper, ALCbackend, ClockLatency, getClockLatency)
- static DECLARE_FORWARD(PlaybackWrapper, ALCbackend, void, lock)
- static DECLARE_FORWARD(PlaybackWrapper, ALCbackend, void, unlock)
- DECLARE_DEFAULT_ALLOCATORS(PlaybackWrapper)
- DEFINE_ALCBACKEND_VTABLE(PlaybackWrapper);
- static void PlaybackWrapper_Construct(PlaybackWrapper *self, ALCdevice *device, const BackendFuncs *funcs)
- {
- ALCbackend_Construct(STATIC_CAST(ALCbackend, self), device);
- SET_VTABLE2(PlaybackWrapper, ALCbackend, self);
- self->Funcs = funcs;
- }
- static ALCenum PlaybackWrapper_open(PlaybackWrapper *self, const ALCchar *name)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- return self->Funcs->OpenPlayback(device, name);
- }
- static void PlaybackWrapper_close(PlaybackWrapper *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- self->Funcs->ClosePlayback(device);
- }
- static ALCboolean PlaybackWrapper_reset(PlaybackWrapper *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- return self->Funcs->ResetPlayback(device);
- }
- static ALCboolean PlaybackWrapper_start(PlaybackWrapper *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- return self->Funcs->StartPlayback(device);
- }
- static void PlaybackWrapper_stop(PlaybackWrapper *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- self->Funcs->StopPlayback(device);
- }
- typedef struct CaptureWrapper {
- DERIVE_FROM_TYPE(ALCbackend);
- const BackendFuncs *Funcs;
- } CaptureWrapper;
- static void CaptureWrapper_Construct(CaptureWrapper *self, ALCdevice *device, const BackendFuncs *funcs);
- static DECLARE_FORWARD(CaptureWrapper, ALCbackend, void, Destruct)
- static ALCenum CaptureWrapper_open(CaptureWrapper *self, const ALCchar *name);
- static void CaptureWrapper_close(CaptureWrapper *self);
- static DECLARE_FORWARD(CaptureWrapper, ALCbackend, ALCboolean, reset)
- static ALCboolean CaptureWrapper_start(CaptureWrapper *self);
- static void CaptureWrapper_stop(CaptureWrapper *self);
- static ALCenum CaptureWrapper_captureSamples(CaptureWrapper *self, void *buffer, ALCuint samples);
- static ALCuint CaptureWrapper_availableSamples(CaptureWrapper *self);
- static DECLARE_FORWARD(CaptureWrapper, ALCbackend, ClockLatency, getClockLatency)
- static DECLARE_FORWARD(CaptureWrapper, ALCbackend, void, lock)
- static DECLARE_FORWARD(CaptureWrapper, ALCbackend, void, unlock)
- DECLARE_DEFAULT_ALLOCATORS(CaptureWrapper)
- DEFINE_ALCBACKEND_VTABLE(CaptureWrapper);
- static void CaptureWrapper_Construct(CaptureWrapper *self, ALCdevice *device, const BackendFuncs *funcs)
- {
- ALCbackend_Construct(STATIC_CAST(ALCbackend, self), device);
- SET_VTABLE2(CaptureWrapper, ALCbackend, self);
- self->Funcs = funcs;
- }
- static ALCenum CaptureWrapper_open(CaptureWrapper *self, const ALCchar *name)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- return self->Funcs->OpenCapture(device, name);
- }
- static void CaptureWrapper_close(CaptureWrapper *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- self->Funcs->CloseCapture(device);
- }
- static ALCboolean CaptureWrapper_start(CaptureWrapper *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- self->Funcs->StartCapture(device);
- return ALC_TRUE;
- }
- static void CaptureWrapper_stop(CaptureWrapper *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- self->Funcs->StopCapture(device);
- }
- static ALCenum CaptureWrapper_captureSamples(CaptureWrapper *self, void *buffer, ALCuint samples)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- return self->Funcs->CaptureSamples(device, buffer, samples);
- }
- static ALCuint CaptureWrapper_availableSamples(CaptureWrapper *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- return self->Funcs->AvailableSamples(device);
- }
- ALCbackend *create_backend_wrapper(ALCdevice *device, const BackendFuncs *funcs, ALCbackend_Type type)
- {
- if(type == ALCbackend_Playback)
- {
- PlaybackWrapper *backend;
- NEW_OBJ(backend, PlaybackWrapper)(device, funcs);
- if(!backend) return NULL;
- return STATIC_CAST(ALCbackend, backend);
- }
- if(type == ALCbackend_Capture)
- {
- CaptureWrapper *backend;
- NEW_OBJ(backend, CaptureWrapper)(device, funcs);
- if(!backend) return NULL;
- return STATIC_CAST(ALCbackend, backend);
- }
- return NULL;
- }
|