| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059 |
- /**
- * OpenAL cross platform audio library
- * Copyright (C) 1999-2007 by authors.
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- * Or go to http://www.gnu.org/copyleft/lgpl.html
- */
- #include "config.h"
- #include <stdlib.h>
- #include <stdio.h>
- #include <memory.h>
- #include <dsound.h>
- #include <cguid.h>
- #include <mmreg.h>
- #ifndef _WAVEFORMATEXTENSIBLE_
- #include <ks.h>
- #include <ksmedia.h>
- #endif
- #include "alMain.h"
- #include "alu.h"
- #include "threads.h"
- #include "compat.h"
- #include "alstring.h"
- #include "backends/base.h"
- #ifndef DSSPEAKER_5POINT1
- # define DSSPEAKER_5POINT1 0x00000006
- #endif
- #ifndef DSSPEAKER_5POINT1_BACK
- # define DSSPEAKER_5POINT1_BACK 0x00000006
- #endif
- #ifndef DSSPEAKER_7POINT1
- # define DSSPEAKER_7POINT1 0x00000007
- #endif
- #ifndef DSSPEAKER_7POINT1_SURROUND
- # define DSSPEAKER_7POINT1_SURROUND 0x00000008
- #endif
- #ifndef DSSPEAKER_5POINT1_SURROUND
- # define DSSPEAKER_5POINT1_SURROUND 0x00000009
- #endif
- DEFINE_GUID(KSDATAFORMAT_SUBTYPE_PCM, 0x00000001, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
- DEFINE_GUID(KSDATAFORMAT_SUBTYPE_IEEE_FLOAT, 0x00000003, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
- #define DEVNAME_TAIL " on OpenAL Soft"
- #ifdef HAVE_DYNLOAD
- static void *ds_handle;
- static HRESULT (WINAPI *pDirectSoundCreate)(const GUID *pcGuidDevice, IDirectSound **ppDS, IUnknown *pUnkOuter);
- static HRESULT (WINAPI *pDirectSoundEnumerateW)(LPDSENUMCALLBACKW pDSEnumCallback, void *pContext);
- static HRESULT (WINAPI *pDirectSoundCaptureCreate)(const GUID *pcGuidDevice, IDirectSoundCapture **ppDSC, IUnknown *pUnkOuter);
- static HRESULT (WINAPI *pDirectSoundCaptureEnumerateW)(LPDSENUMCALLBACKW pDSEnumCallback, void *pContext);
- #define DirectSoundCreate pDirectSoundCreate
- #define DirectSoundEnumerateW pDirectSoundEnumerateW
- #define DirectSoundCaptureCreate pDirectSoundCaptureCreate
- #define DirectSoundCaptureEnumerateW pDirectSoundCaptureEnumerateW
- #endif
- static ALCboolean DSoundLoad(void)
- {
- #ifdef HAVE_DYNLOAD
- if(!ds_handle)
- {
- ds_handle = LoadLib("dsound.dll");
- if(ds_handle == NULL)
- {
- ERR("Failed to load dsound.dll\n");
- return ALC_FALSE;
- }
- #define LOAD_FUNC(f) do { \
- p##f = GetSymbol(ds_handle, #f); \
- if(p##f == NULL) { \
- CloseLib(ds_handle); \
- ds_handle = NULL; \
- return ALC_FALSE; \
- } \
- } while(0)
- LOAD_FUNC(DirectSoundCreate);
- LOAD_FUNC(DirectSoundEnumerateW);
- LOAD_FUNC(DirectSoundCaptureCreate);
- LOAD_FUNC(DirectSoundCaptureEnumerateW);
- #undef LOAD_FUNC
- }
- #endif
- return ALC_TRUE;
- }
- #define MAX_UPDATES 128
- typedef struct {
- al_string name;
- GUID guid;
- } DevMap;
- TYPEDEF_VECTOR(DevMap, vector_DevMap)
- static vector_DevMap PlaybackDevices;
- static vector_DevMap CaptureDevices;
- static void clear_devlist(vector_DevMap *list)
- {
- #define DEINIT_STR(i) AL_STRING_DEINIT((i)->name)
- VECTOR_FOR_EACH(DevMap, *list, DEINIT_STR);
- VECTOR_RESIZE(*list, 0);
- #undef DEINIT_STR
- }
- static BOOL CALLBACK DSoundEnumDevices(GUID *guid, const WCHAR *desc, const WCHAR* UNUSED(drvname), void *data)
- {
- vector_DevMap *devices = data;
- OLECHAR *guidstr = NULL;
- DevMap entry;
- HRESULT hr;
- int count;
- if(!guid)
- return TRUE;
- AL_STRING_INIT(entry.name);
- count = 0;
- while(1)
- {
- const DevMap *iter;
- al_string_copy_wcstr(&entry.name, desc);
- if(count == 0)
- al_string_append_cstr(&entry.name, DEVNAME_TAIL);
- else
- {
- char str[64];
- snprintf(str, sizeof(str), " #%d"DEVNAME_TAIL, count+1);
- al_string_append_cstr(&entry.name, str);
- }
- #define MATCH_ENTRY(i) (al_string_cmp(entry.name, (i)->name) == 0)
- VECTOR_FIND_IF(iter, const DevMap, *devices, MATCH_ENTRY);
- if(iter == VECTOR_ITER_END(*devices)) break;
- #undef MATCH_ENTRY
- count++;
- }
- entry.guid = *guid;
- hr = StringFromCLSID(guid, &guidstr);
- if(SUCCEEDED(hr))
- {
- TRACE("Got device \"%s\", GUID \"%ls\"\n", al_string_get_cstr(entry.name), guidstr);
- CoTaskMemFree(guidstr);
- }
- VECTOR_PUSH_BACK(*devices, entry);
- return TRUE;
- }
- typedef struct ALCdsoundPlayback {
- DERIVE_FROM_TYPE(ALCbackend);
- IDirectSound *DS;
- IDirectSoundBuffer *PrimaryBuffer;
- IDirectSoundBuffer *Buffer;
- IDirectSoundNotify *Notifies;
- HANDLE NotifyEvent;
- volatile int killNow;
- althrd_t thread;
- } ALCdsoundPlayback;
- static int ALCdsoundPlayback_mixerProc(void *ptr);
- static void ALCdsoundPlayback_Construct(ALCdsoundPlayback *self, ALCdevice *device);
- static DECLARE_FORWARD(ALCdsoundPlayback, ALCbackend, void, Destruct)
- static ALCenum ALCdsoundPlayback_open(ALCdsoundPlayback *self, const ALCchar *name);
- static void ALCdsoundPlayback_close(ALCdsoundPlayback *self);
- static ALCboolean ALCdsoundPlayback_reset(ALCdsoundPlayback *self);
- static ALCboolean ALCdsoundPlayback_start(ALCdsoundPlayback *self);
- static void ALCdsoundPlayback_stop(ALCdsoundPlayback *self);
- static DECLARE_FORWARD2(ALCdsoundPlayback, ALCbackend, ALCenum, captureSamples, void*, ALCuint)
- static DECLARE_FORWARD(ALCdsoundPlayback, ALCbackend, ALCuint, availableSamples)
- static DECLARE_FORWARD(ALCdsoundPlayback, ALCbackend, ALint64, getLatency)
- static DECLARE_FORWARD(ALCdsoundPlayback, ALCbackend, void, lock)
- static DECLARE_FORWARD(ALCdsoundPlayback, ALCbackend, void, unlock)
- DECLARE_DEFAULT_ALLOCATORS(ALCdsoundPlayback)
- DEFINE_ALCBACKEND_VTABLE(ALCdsoundPlayback);
- static void ALCdsoundPlayback_Construct(ALCdsoundPlayback *self, ALCdevice *device)
- {
- ALCbackend_Construct(STATIC_CAST(ALCbackend, self), device);
- SET_VTABLE2(ALCdsoundPlayback, ALCbackend, self);
- }
- FORCE_ALIGN static int ALCdsoundPlayback_mixerProc(void *ptr)
- {
- ALCdsoundPlayback *self = ptr;
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- DSBCAPS DSBCaps;
- DWORD LastCursor = 0;
- DWORD PlayCursor;
- void *WritePtr1, *WritePtr2;
- DWORD WriteCnt1, WriteCnt2;
- BOOL Playing = FALSE;
- DWORD FrameSize;
- DWORD FragSize;
- DWORD avail;
- HRESULT err;
- SetRTPriority();
- althrd_setname(althrd_current(), MIXER_THREAD_NAME);
- memset(&DSBCaps, 0, sizeof(DSBCaps));
- DSBCaps.dwSize = sizeof(DSBCaps);
- err = IDirectSoundBuffer_GetCaps(self->Buffer, &DSBCaps);
- if(FAILED(err))
- {
- ERR("Failed to get buffer caps: 0x%lx\n", err);
- ALCdevice_Lock(device);
- aluHandleDisconnect(device);
- ALCdevice_Unlock(device);
- return 1;
- }
- FrameSize = FrameSizeFromDevFmt(device->FmtChans, device->FmtType);
- FragSize = device->UpdateSize * FrameSize;
- IDirectSoundBuffer_GetCurrentPosition(self->Buffer, &LastCursor, NULL);
- while(!self->killNow)
- {
- // Get current play cursor
- IDirectSoundBuffer_GetCurrentPosition(self->Buffer, &PlayCursor, NULL);
- avail = (PlayCursor-LastCursor+DSBCaps.dwBufferBytes) % DSBCaps.dwBufferBytes;
- if(avail < FragSize)
- {
- if(!Playing)
- {
- err = IDirectSoundBuffer_Play(self->Buffer, 0, 0, DSBPLAY_LOOPING);
- if(FAILED(err))
- {
- ERR("Failed to play buffer: 0x%lx\n", err);
- ALCdevice_Lock(device);
- aluHandleDisconnect(device);
- ALCdevice_Unlock(device);
- return 1;
- }
- Playing = TRUE;
- }
- avail = WaitForSingleObjectEx(self->NotifyEvent, 2000, FALSE);
- if(avail != WAIT_OBJECT_0)
- ERR("WaitForSingleObjectEx error: 0x%lx\n", avail);
- continue;
- }
- avail -= avail%FragSize;
- // Lock output buffer
- WriteCnt1 = 0;
- WriteCnt2 = 0;
- err = IDirectSoundBuffer_Lock(self->Buffer, LastCursor, avail, &WritePtr1, &WriteCnt1, &WritePtr2, &WriteCnt2, 0);
- // If the buffer is lost, restore it and lock
- if(err == DSERR_BUFFERLOST)
- {
- WARN("Buffer lost, restoring...\n");
- err = IDirectSoundBuffer_Restore(self->Buffer);
- if(SUCCEEDED(err))
- {
- Playing = FALSE;
- LastCursor = 0;
- err = IDirectSoundBuffer_Lock(self->Buffer, 0, DSBCaps.dwBufferBytes, &WritePtr1, &WriteCnt1, &WritePtr2, &WriteCnt2, 0);
- }
- }
- // Successfully locked the output buffer
- if(SUCCEEDED(err))
- {
- // If we have an active context, mix data directly into output buffer otherwise fill with silence
- aluMixData(device, WritePtr1, WriteCnt1/FrameSize);
- aluMixData(device, WritePtr2, WriteCnt2/FrameSize);
- // Unlock output buffer only when successfully locked
- IDirectSoundBuffer_Unlock(self->Buffer, WritePtr1, WriteCnt1, WritePtr2, WriteCnt2);
- }
- else
- {
- ERR("Buffer lock error: %#lx\n", err);
- ALCdevice_Lock(device);
- aluHandleDisconnect(device);
- ALCdevice_Unlock(device);
- return 1;
- }
- // Update old write cursor location
- LastCursor += WriteCnt1+WriteCnt2;
- LastCursor %= DSBCaps.dwBufferBytes;
- }
- return 0;
- }
- static ALCenum ALCdsoundPlayback_open(ALCdsoundPlayback *self, const ALCchar *deviceName)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- const GUID *guid = NULL;
- HRESULT hr, hrcom;
- if(VECTOR_SIZE(PlaybackDevices) == 0)
- {
- /* Initialize COM to prevent name truncation */
- hrcom = CoInitialize(NULL);
- hr = DirectSoundEnumerateW(DSoundEnumDevices, &PlaybackDevices);
- if(FAILED(hr))
- ERR("Error enumerating DirectSound devices (0x%lx)!\n", hr);
- if(SUCCEEDED(hrcom))
- CoUninitialize();
- }
- if(!deviceName && VECTOR_SIZE(PlaybackDevices) > 0)
- {
- deviceName = al_string_get_cstr(VECTOR_FRONT(PlaybackDevices).name);
- guid = &VECTOR_FRONT(PlaybackDevices).guid;
- }
- else
- {
- const DevMap *iter;
- #define MATCH_NAME(i) (al_string_cmp_cstr((i)->name, deviceName) == 0)
- VECTOR_FIND_IF(iter, const DevMap, PlaybackDevices, MATCH_NAME);
- #undef MATCH_NAME
- if(iter == VECTOR_ITER_END(PlaybackDevices))
- return ALC_INVALID_VALUE;
- guid = &iter->guid;
- }
- hr = DS_OK;
- self->NotifyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
- if(self->NotifyEvent == NULL)
- hr = E_FAIL;
- //DirectSound Init code
- if(SUCCEEDED(hr))
- hr = DirectSoundCreate(guid, &self->DS, NULL);
- if(SUCCEEDED(hr))
- hr = IDirectSound_SetCooperativeLevel(self->DS, GetForegroundWindow(), DSSCL_PRIORITY);
- if(FAILED(hr))
- {
- if(self->DS)
- IDirectSound_Release(self->DS);
- self->DS = NULL;
- if(self->NotifyEvent)
- CloseHandle(self->NotifyEvent);
- self->NotifyEvent = NULL;
- ERR("Device init failed: 0x%08lx\n", hr);
- return ALC_INVALID_VALUE;
- }
- al_string_copy_cstr(&device->DeviceName, deviceName);
- return ALC_NO_ERROR;
- }
- static void ALCdsoundPlayback_close(ALCdsoundPlayback *self)
- {
- if(self->Notifies)
- IDirectSoundNotify_Release(self->Notifies);
- self->Notifies = NULL;
- if(self->Buffer)
- IDirectSoundBuffer_Release(self->Buffer);
- self->Buffer = NULL;
- if(self->PrimaryBuffer != NULL)
- IDirectSoundBuffer_Release(self->PrimaryBuffer);
- self->PrimaryBuffer = NULL;
- IDirectSound_Release(self->DS);
- self->DS = NULL;
- CloseHandle(self->NotifyEvent);
- self->NotifyEvent = NULL;
- }
- static ALCboolean ALCdsoundPlayback_reset(ALCdsoundPlayback *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- DSBUFFERDESC DSBDescription;
- WAVEFORMATEXTENSIBLE OutputType;
- DWORD speakers;
- HRESULT hr;
- memset(&OutputType, 0, sizeof(OutputType));
- if(self->Notifies)
- IDirectSoundNotify_Release(self->Notifies);
- self->Notifies = NULL;
- if(self->Buffer)
- IDirectSoundBuffer_Release(self->Buffer);
- self->Buffer = NULL;
- if(self->PrimaryBuffer != NULL)
- IDirectSoundBuffer_Release(self->PrimaryBuffer);
- self->PrimaryBuffer = NULL;
- switch(device->FmtType)
- {
- case DevFmtByte:
- device->FmtType = DevFmtUByte;
- break;
- case DevFmtFloat:
- if((device->Flags&DEVICE_SAMPLE_TYPE_REQUEST))
- break;
- /* fall-through */
- case DevFmtUShort:
- device->FmtType = DevFmtShort;
- break;
- case DevFmtUInt:
- device->FmtType = DevFmtInt;
- break;
- case DevFmtUByte:
- case DevFmtShort:
- case DevFmtInt:
- break;
- }
- hr = IDirectSound_GetSpeakerConfig(self->DS, &speakers);
- if(SUCCEEDED(hr))
- {
- speakers = DSSPEAKER_CONFIG(speakers);
- if(!(device->Flags&DEVICE_CHANNELS_REQUEST))
- {
- if(speakers == DSSPEAKER_MONO)
- device->FmtChans = DevFmtMono;
- else if(speakers == DSSPEAKER_STEREO || speakers == DSSPEAKER_HEADPHONE)
- device->FmtChans = DevFmtStereo;
- else if(speakers == DSSPEAKER_QUAD)
- device->FmtChans = DevFmtQuad;
- else if(speakers == DSSPEAKER_5POINT1_SURROUND)
- device->FmtChans = DevFmtX51;
- else if(speakers == DSSPEAKER_5POINT1_BACK)
- device->FmtChans = DevFmtX51Rear;
- else if(speakers == DSSPEAKER_7POINT1 || speakers == DSSPEAKER_7POINT1_SURROUND)
- device->FmtChans = DevFmtX71;
- else
- ERR("Unknown system speaker config: 0x%lx\n", speakers);
- }
- device->IsHeadphones = (device->FmtChans == DevFmtStereo &&
- speakers == DSSPEAKER_HEADPHONE);
- switch(device->FmtChans)
- {
- case DevFmtMono:
- OutputType.dwChannelMask = SPEAKER_FRONT_CENTER;
- break;
- case DevFmtBFormat3D:
- device->FmtChans = DevFmtStereo;
- /*fall-through*/
- case DevFmtStereo:
- OutputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT;
- break;
- case DevFmtQuad:
- OutputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_BACK_LEFT |
- SPEAKER_BACK_RIGHT;
- break;
- case DevFmtX51:
- OutputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_FRONT_CENTER |
- SPEAKER_LOW_FREQUENCY |
- SPEAKER_SIDE_LEFT |
- SPEAKER_SIDE_RIGHT;
- break;
- case DevFmtX51Rear:
- OutputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_FRONT_CENTER |
- SPEAKER_LOW_FREQUENCY |
- SPEAKER_BACK_LEFT |
- SPEAKER_BACK_RIGHT;
- break;
- case DevFmtX61:
- OutputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_FRONT_CENTER |
- SPEAKER_LOW_FREQUENCY |
- SPEAKER_BACK_CENTER |
- SPEAKER_SIDE_LEFT |
- SPEAKER_SIDE_RIGHT;
- break;
- case DevFmtX71:
- OutputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_FRONT_CENTER |
- SPEAKER_LOW_FREQUENCY |
- SPEAKER_BACK_LEFT |
- SPEAKER_BACK_RIGHT |
- SPEAKER_SIDE_LEFT |
- SPEAKER_SIDE_RIGHT;
- break;
- }
- retry_open:
- hr = S_OK;
- OutputType.Format.wFormatTag = WAVE_FORMAT_PCM;
- OutputType.Format.nChannels = ChannelsFromDevFmt(device->FmtChans);
- OutputType.Format.wBitsPerSample = BytesFromDevFmt(device->FmtType) * 8;
- OutputType.Format.nBlockAlign = OutputType.Format.nChannels*OutputType.Format.wBitsPerSample/8;
- OutputType.Format.nSamplesPerSec = device->Frequency;
- OutputType.Format.nAvgBytesPerSec = OutputType.Format.nSamplesPerSec*OutputType.Format.nBlockAlign;
- OutputType.Format.cbSize = 0;
- }
- if(OutputType.Format.nChannels > 2 || device->FmtType == DevFmtFloat)
- {
- OutputType.Format.wFormatTag = WAVE_FORMAT_EXTENSIBLE;
- OutputType.Samples.wValidBitsPerSample = OutputType.Format.wBitsPerSample;
- OutputType.Format.cbSize = sizeof(WAVEFORMATEXTENSIBLE) - sizeof(WAVEFORMATEX);
- if(device->FmtType == DevFmtFloat)
- OutputType.SubFormat = KSDATAFORMAT_SUBTYPE_IEEE_FLOAT;
- else
- OutputType.SubFormat = KSDATAFORMAT_SUBTYPE_PCM;
- if(self->PrimaryBuffer)
- IDirectSoundBuffer_Release(self->PrimaryBuffer);
- self->PrimaryBuffer = NULL;
- }
- else
- {
- if(SUCCEEDED(hr) && !self->PrimaryBuffer)
- {
- memset(&DSBDescription,0,sizeof(DSBUFFERDESC));
- DSBDescription.dwSize=sizeof(DSBUFFERDESC);
- DSBDescription.dwFlags=DSBCAPS_PRIMARYBUFFER;
- hr = IDirectSound_CreateSoundBuffer(self->DS, &DSBDescription, &self->PrimaryBuffer, NULL);
- }
- if(SUCCEEDED(hr))
- hr = IDirectSoundBuffer_SetFormat(self->PrimaryBuffer,&OutputType.Format);
- }
- if(SUCCEEDED(hr))
- {
- if(device->NumUpdates > MAX_UPDATES)
- {
- device->UpdateSize = (device->UpdateSize*device->NumUpdates +
- MAX_UPDATES-1) / MAX_UPDATES;
- device->NumUpdates = MAX_UPDATES;
- }
- memset(&DSBDescription,0,sizeof(DSBUFFERDESC));
- DSBDescription.dwSize=sizeof(DSBUFFERDESC);
- DSBDescription.dwFlags=DSBCAPS_CTRLPOSITIONNOTIFY|DSBCAPS_GETCURRENTPOSITION2|DSBCAPS_GLOBALFOCUS;
- DSBDescription.dwBufferBytes=device->UpdateSize * device->NumUpdates *
- OutputType.Format.nBlockAlign;
- DSBDescription.lpwfxFormat=&OutputType.Format;
- hr = IDirectSound_CreateSoundBuffer(self->DS, &DSBDescription, &self->Buffer, NULL);
- if(FAILED(hr) && device->FmtType == DevFmtFloat)
- {
- device->FmtType = DevFmtShort;
- goto retry_open;
- }
- }
- if(SUCCEEDED(hr))
- {
- hr = IDirectSoundBuffer_QueryInterface(self->Buffer, &IID_IDirectSoundNotify, (void**)&self->Notifies);
- if(SUCCEEDED(hr))
- {
- DSBPOSITIONNOTIFY notifies[MAX_UPDATES];
- ALuint i;
- for(i = 0;i < device->NumUpdates;++i)
- {
- notifies[i].dwOffset = i * device->UpdateSize *
- OutputType.Format.nBlockAlign;
- notifies[i].hEventNotify = self->NotifyEvent;
- }
- if(IDirectSoundNotify_SetNotificationPositions(self->Notifies, device->NumUpdates, notifies) != DS_OK)
- hr = E_FAIL;
- }
- }
- if(FAILED(hr))
- {
- if(self->Notifies != NULL)
- IDirectSoundNotify_Release(self->Notifies);
- self->Notifies = NULL;
- if(self->Buffer != NULL)
- IDirectSoundBuffer_Release(self->Buffer);
- self->Buffer = NULL;
- if(self->PrimaryBuffer != NULL)
- IDirectSoundBuffer_Release(self->PrimaryBuffer);
- self->PrimaryBuffer = NULL;
- return ALC_FALSE;
- }
- ResetEvent(self->NotifyEvent);
- SetDefaultWFXChannelOrder(device);
- return ALC_TRUE;
- }
- static ALCboolean ALCdsoundPlayback_start(ALCdsoundPlayback *self)
- {
- self->killNow = 0;
- if(althrd_create(&self->thread, ALCdsoundPlayback_mixerProc, self) != althrd_success)
- return ALC_FALSE;
- return ALC_TRUE;
- }
- static void ALCdsoundPlayback_stop(ALCdsoundPlayback *self)
- {
- int res;
- if(self->killNow)
- return;
- self->killNow = 1;
- althrd_join(self->thread, &res);
- IDirectSoundBuffer_Stop(self->Buffer);
- }
- typedef struct ALCdsoundCapture {
- DERIVE_FROM_TYPE(ALCbackend);
- IDirectSoundCapture *DSC;
- IDirectSoundCaptureBuffer *DSCbuffer;
- DWORD BufferBytes;
- DWORD Cursor;
- RingBuffer *Ring;
- } ALCdsoundCapture;
- static void ALCdsoundCapture_Construct(ALCdsoundCapture *self, ALCdevice *device);
- static DECLARE_FORWARD(ALCdsoundCapture, ALCbackend, void, Destruct)
- static ALCenum ALCdsoundCapture_open(ALCdsoundCapture *self, const ALCchar *name);
- static void ALCdsoundCapture_close(ALCdsoundCapture *self);
- static DECLARE_FORWARD(ALCdsoundCapture, ALCbackend, ALCboolean, reset)
- static ALCboolean ALCdsoundCapture_start(ALCdsoundCapture *self);
- static void ALCdsoundCapture_stop(ALCdsoundCapture *self);
- static ALCenum ALCdsoundCapture_captureSamples(ALCdsoundCapture *self, ALCvoid *buffer, ALCuint samples);
- static ALCuint ALCdsoundCapture_availableSamples(ALCdsoundCapture *self);
- static DECLARE_FORWARD(ALCdsoundCapture, ALCbackend, ALint64, getLatency)
- static DECLARE_FORWARD(ALCdsoundCapture, ALCbackend, void, lock)
- static DECLARE_FORWARD(ALCdsoundCapture, ALCbackend, void, unlock)
- DECLARE_DEFAULT_ALLOCATORS(ALCdsoundCapture)
- DEFINE_ALCBACKEND_VTABLE(ALCdsoundCapture);
- static void ALCdsoundCapture_Construct(ALCdsoundCapture *self, ALCdevice *device)
- {
- ALCbackend_Construct(STATIC_CAST(ALCbackend, self), device);
- SET_VTABLE2(ALCdsoundCapture, ALCbackend, self);
- }
- static ALCenum ALCdsoundCapture_open(ALCdsoundCapture *self, const ALCchar *deviceName)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- WAVEFORMATEXTENSIBLE InputType;
- DSCBUFFERDESC DSCBDescription;
- const GUID *guid = NULL;
- HRESULT hr, hrcom;
- ALuint samples;
- if(VECTOR_SIZE(CaptureDevices) == 0)
- {
- /* Initialize COM to prevent name truncation */
- hrcom = CoInitialize(NULL);
- hr = DirectSoundCaptureEnumerateW(DSoundEnumDevices, &CaptureDevices);
- if(FAILED(hr))
- ERR("Error enumerating DirectSound devices (0x%lx)!\n", hr);
- if(SUCCEEDED(hrcom))
- CoUninitialize();
- }
- if(!deviceName && VECTOR_SIZE(CaptureDevices) > 0)
- {
- deviceName = al_string_get_cstr(VECTOR_FRONT(CaptureDevices).name);
- guid = &VECTOR_FRONT(CaptureDevices).guid;
- }
- else
- {
- const DevMap *iter;
- #define MATCH_NAME(i) (al_string_cmp_cstr((i)->name, deviceName) == 0)
- VECTOR_FIND_IF(iter, const DevMap, CaptureDevices, MATCH_NAME);
- #undef MATCH_NAME
- if(iter == VECTOR_ITER_END(CaptureDevices))
- return ALC_INVALID_VALUE;
- guid = &iter->guid;
- }
- switch(device->FmtType)
- {
- case DevFmtByte:
- case DevFmtUShort:
- case DevFmtUInt:
- WARN("%s capture samples not supported\n", DevFmtTypeString(device->FmtType));
- return ALC_INVALID_ENUM;
- case DevFmtUByte:
- case DevFmtShort:
- case DevFmtInt:
- case DevFmtFloat:
- break;
- }
- //DirectSoundCapture Init code
- hr = DirectSoundCaptureCreate(guid, &self->DSC, NULL);
- if(SUCCEEDED(hr))
- {
- memset(&InputType, 0, sizeof(InputType));
- switch(device->FmtChans)
- {
- case DevFmtMono:
- InputType.dwChannelMask = SPEAKER_FRONT_CENTER;
- break;
- case DevFmtStereo:
- InputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT;
- break;
- case DevFmtQuad:
- InputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_BACK_LEFT |
- SPEAKER_BACK_RIGHT;
- break;
- case DevFmtX51:
- InputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_FRONT_CENTER |
- SPEAKER_LOW_FREQUENCY |
- SPEAKER_SIDE_LEFT |
- SPEAKER_SIDE_RIGHT;
- break;
- case DevFmtX51Rear:
- InputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_FRONT_CENTER |
- SPEAKER_LOW_FREQUENCY |
- SPEAKER_BACK_LEFT |
- SPEAKER_BACK_RIGHT;
- break;
- case DevFmtX61:
- InputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_FRONT_CENTER |
- SPEAKER_LOW_FREQUENCY |
- SPEAKER_BACK_CENTER |
- SPEAKER_SIDE_LEFT |
- SPEAKER_SIDE_RIGHT;
- break;
- case DevFmtX71:
- InputType.dwChannelMask = SPEAKER_FRONT_LEFT |
- SPEAKER_FRONT_RIGHT |
- SPEAKER_FRONT_CENTER |
- SPEAKER_LOW_FREQUENCY |
- SPEAKER_BACK_LEFT |
- SPEAKER_BACK_RIGHT |
- SPEAKER_SIDE_LEFT |
- SPEAKER_SIDE_RIGHT;
- break;
- case DevFmtBFormat3D:
- break;
- }
- InputType.Format.wFormatTag = WAVE_FORMAT_PCM;
- InputType.Format.nChannels = ChannelsFromDevFmt(device->FmtChans);
- InputType.Format.wBitsPerSample = BytesFromDevFmt(device->FmtType) * 8;
- InputType.Format.nBlockAlign = InputType.Format.nChannels*InputType.Format.wBitsPerSample/8;
- InputType.Format.nSamplesPerSec = device->Frequency;
- InputType.Format.nAvgBytesPerSec = InputType.Format.nSamplesPerSec*InputType.Format.nBlockAlign;
- InputType.Format.cbSize = 0;
- if(InputType.Format.nChannels > 2 || device->FmtType == DevFmtFloat)
- {
- InputType.Format.wFormatTag = WAVE_FORMAT_EXTENSIBLE;
- InputType.Format.cbSize = sizeof(WAVEFORMATEXTENSIBLE) - sizeof(WAVEFORMATEX);
- InputType.Samples.wValidBitsPerSample = InputType.Format.wBitsPerSample;
- if(device->FmtType == DevFmtFloat)
- InputType.SubFormat = KSDATAFORMAT_SUBTYPE_IEEE_FLOAT;
- else
- InputType.SubFormat = KSDATAFORMAT_SUBTYPE_PCM;
- }
- samples = device->UpdateSize * device->NumUpdates;
- samples = maxu(samples, 100 * device->Frequency / 1000);
- memset(&DSCBDescription, 0, sizeof(DSCBUFFERDESC));
- DSCBDescription.dwSize = sizeof(DSCBUFFERDESC);
- DSCBDescription.dwFlags = 0;
- DSCBDescription.dwBufferBytes = samples * InputType.Format.nBlockAlign;
- DSCBDescription.lpwfxFormat = &InputType.Format;
- hr = IDirectSoundCapture_CreateCaptureBuffer(self->DSC, &DSCBDescription, &self->DSCbuffer, NULL);
- }
- if(SUCCEEDED(hr))
- {
- self->Ring = CreateRingBuffer(InputType.Format.nBlockAlign, device->UpdateSize * device->NumUpdates);
- if(self->Ring == NULL)
- hr = DSERR_OUTOFMEMORY;
- }
- if(FAILED(hr))
- {
- ERR("Device init failed: 0x%08lx\n", hr);
- DestroyRingBuffer(self->Ring);
- self->Ring = NULL;
- if(self->DSCbuffer != NULL)
- IDirectSoundCaptureBuffer_Release(self->DSCbuffer);
- self->DSCbuffer = NULL;
- if(self->DSC)
- IDirectSoundCapture_Release(self->DSC);
- self->DSC = NULL;
- return ALC_INVALID_VALUE;
- }
- self->BufferBytes = DSCBDescription.dwBufferBytes;
- SetDefaultWFXChannelOrder(device);
- al_string_copy_cstr(&device->DeviceName, deviceName);
- return ALC_NO_ERROR;
- }
- static void ALCdsoundCapture_close(ALCdsoundCapture *self)
- {
- DestroyRingBuffer(self->Ring);
- self->Ring = NULL;
- if(self->DSCbuffer != NULL)
- {
- IDirectSoundCaptureBuffer_Stop(self->DSCbuffer);
- IDirectSoundCaptureBuffer_Release(self->DSCbuffer);
- self->DSCbuffer = NULL;
- }
- IDirectSoundCapture_Release(self->DSC);
- self->DSC = NULL;
- }
- static ALCboolean ALCdsoundCapture_start(ALCdsoundCapture *self)
- {
- HRESULT hr;
- hr = IDirectSoundCaptureBuffer_Start(self->DSCbuffer, DSCBSTART_LOOPING);
- if(FAILED(hr))
- {
- ERR("start failed: 0x%08lx\n", hr);
- aluHandleDisconnect(STATIC_CAST(ALCbackend, self)->mDevice);
- return ALC_FALSE;
- }
- return ALC_TRUE;
- }
- static void ALCdsoundCapture_stop(ALCdsoundCapture *self)
- {
- HRESULT hr;
- hr = IDirectSoundCaptureBuffer_Stop(self->DSCbuffer);
- if(FAILED(hr))
- {
- ERR("stop failed: 0x%08lx\n", hr);
- aluHandleDisconnect(STATIC_CAST(ALCbackend, self)->mDevice);
- }
- }
- static ALCenum ALCdsoundCapture_captureSamples(ALCdsoundCapture *self, ALCvoid *buffer, ALCuint samples)
- {
- ReadRingBuffer(self->Ring, buffer, samples);
- return ALC_NO_ERROR;
- }
- static ALCuint ALCdsoundCapture_availableSamples(ALCdsoundCapture *self)
- {
- ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
- DWORD ReadCursor, LastCursor, BufferBytes, NumBytes;
- void *ReadPtr1, *ReadPtr2;
- DWORD ReadCnt1, ReadCnt2;
- DWORD FrameSize;
- HRESULT hr;
- if(!device->Connected)
- goto done;
- FrameSize = FrameSizeFromDevFmt(device->FmtChans, device->FmtType);
- BufferBytes = self->BufferBytes;
- LastCursor = self->Cursor;
- hr = IDirectSoundCaptureBuffer_GetCurrentPosition(self->DSCbuffer, NULL, &ReadCursor);
- if(SUCCEEDED(hr))
- {
- NumBytes = (ReadCursor-LastCursor + BufferBytes) % BufferBytes;
- if(NumBytes == 0)
- goto done;
- hr = IDirectSoundCaptureBuffer_Lock(self->DSCbuffer, LastCursor, NumBytes,
- &ReadPtr1, &ReadCnt1,
- &ReadPtr2, &ReadCnt2, 0);
- }
- if(SUCCEEDED(hr))
- {
- WriteRingBuffer(self->Ring, ReadPtr1, ReadCnt1/FrameSize);
- if(ReadPtr2 != NULL)
- WriteRingBuffer(self->Ring, ReadPtr2, ReadCnt2/FrameSize);
- hr = IDirectSoundCaptureBuffer_Unlock(self->DSCbuffer,
- ReadPtr1, ReadCnt1,
- ReadPtr2, ReadCnt2);
- self->Cursor = (LastCursor+ReadCnt1+ReadCnt2) % BufferBytes;
- }
- if(FAILED(hr))
- {
- ERR("update failed: 0x%08lx\n", hr);
- aluHandleDisconnect(device);
- }
- done:
- return RingBufferSize(self->Ring);
- }
- static inline void AppendAllDevicesList2(const DevMap *entry)
- { AppendAllDevicesList(al_string_get_cstr(entry->name)); }
- static inline void AppendCaptureDeviceList2(const DevMap *entry)
- { AppendCaptureDeviceList(al_string_get_cstr(entry->name)); }
- typedef struct ALCdsoundBackendFactory {
- DERIVE_FROM_TYPE(ALCbackendFactory);
- } ALCdsoundBackendFactory;
- #define ALCDSOUNDBACKENDFACTORY_INITIALIZER { { GET_VTABLE2(ALCdsoundBackendFactory, ALCbackendFactory) } }
- ALCbackendFactory *ALCdsoundBackendFactory_getFactory(void);
- static ALCboolean ALCdsoundBackendFactory_init(ALCdsoundBackendFactory *self);
- static void ALCdsoundBackendFactory_deinit(ALCdsoundBackendFactory *self);
- static ALCboolean ALCdsoundBackendFactory_querySupport(ALCdsoundBackendFactory *self, ALCbackend_Type type);
- static void ALCdsoundBackendFactory_probe(ALCdsoundBackendFactory *self, enum DevProbe type);
- static ALCbackend* ALCdsoundBackendFactory_createBackend(ALCdsoundBackendFactory *self, ALCdevice *device, ALCbackend_Type type);
- DEFINE_ALCBACKENDFACTORY_VTABLE(ALCdsoundBackendFactory);
- ALCbackendFactory *ALCdsoundBackendFactory_getFactory(void)
- {
- static ALCdsoundBackendFactory factory = ALCDSOUNDBACKENDFACTORY_INITIALIZER;
- return STATIC_CAST(ALCbackendFactory, &factory);
- }
- static ALCboolean ALCdsoundBackendFactory_init(ALCdsoundBackendFactory* UNUSED(self))
- {
- VECTOR_INIT(PlaybackDevices);
- VECTOR_INIT(CaptureDevices);
- if(!DSoundLoad())
- return ALC_FALSE;
- return ALC_TRUE;
- }
- static void ALCdsoundBackendFactory_deinit(ALCdsoundBackendFactory* UNUSED(self))
- {
- clear_devlist(&PlaybackDevices);
- VECTOR_DEINIT(PlaybackDevices);
- clear_devlist(&CaptureDevices);
- VECTOR_DEINIT(CaptureDevices);
- #ifdef HAVE_DYNLOAD
- if(ds_handle)
- CloseLib(ds_handle);
- ds_handle = NULL;
- #endif
- }
- static ALCboolean ALCdsoundBackendFactory_querySupport(ALCdsoundBackendFactory* UNUSED(self), ALCbackend_Type type)
- {
- if(type == ALCbackend_Playback || type == ALCbackend_Capture)
- return ALC_TRUE;
- return ALC_FALSE;
- }
- static void ALCdsoundBackendFactory_probe(ALCdsoundBackendFactory* UNUSED(self), enum DevProbe type)
- {
- HRESULT hr, hrcom;
- /* Initialize COM to prevent name truncation */
- hrcom = CoInitialize(NULL);
- switch(type)
- {
- case ALL_DEVICE_PROBE:
- clear_devlist(&PlaybackDevices);
- hr = DirectSoundEnumerateW(DSoundEnumDevices, &PlaybackDevices);
- if(FAILED(hr))
- ERR("Error enumerating DirectSound playback devices (0x%lx)!\n", hr);
- VECTOR_FOR_EACH(const DevMap, PlaybackDevices, AppendAllDevicesList2);
- break;
- case CAPTURE_DEVICE_PROBE:
- clear_devlist(&CaptureDevices);
- hr = DirectSoundCaptureEnumerateW(DSoundEnumDevices, &CaptureDevices);
- if(FAILED(hr))
- ERR("Error enumerating DirectSound capture devices (0x%lx)!\n", hr);
- VECTOR_FOR_EACH(const DevMap, CaptureDevices, AppendCaptureDeviceList2);
- break;
- }
- if(SUCCEEDED(hrcom))
- CoUninitialize();
- }
- static ALCbackend* ALCdsoundBackendFactory_createBackend(ALCdsoundBackendFactory* UNUSED(self), ALCdevice *device, ALCbackend_Type type)
- {
- if(type == ALCbackend_Playback)
- {
- ALCdsoundPlayback *backend;
- NEW_OBJ(backend, ALCdsoundPlayback)(device);
- if(!backend) return NULL;
- return STATIC_CAST(ALCbackend, backend);
- }
- if(type == ALCbackend_Capture)
- {
- ALCdsoundCapture *backend;
- NEW_OBJ(backend, ALCdsoundCapture)(device);
- if(!backend) return NULL;
- return STATIC_CAST(ALCbackend, backend);
- }
- return NULL;
- }
|