12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064 |
- /**
- * 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_HEAD "OpenAL Soft on "
- #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, 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_cstr(&entry.name, DEVNAME_HEAD);
- al_string_append_wcstr(&entry.name, desc);
- if(count != 0)
- {
- char str[64];
- snprintf(str, sizeof(str), " #%d", 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_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, ClockLatency, getClockLatency)
- 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_END(PlaybackDevices))
- return ALC_INVALID_VALUE;
- guid = &iter->guid;
- }
- hr = DS_OK;
- self->NotifyEvent = CreateEventW(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 DevFmtAmbi1:
- case DevFmtAmbi2:
- case DevFmtAmbi3:
- 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;
- ll_ringbuffer_t *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, ClockLatency, getClockLatency)
- 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_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 DevFmtAmbi1:
- case DevFmtAmbi2:
- case DevFmtAmbi3:
- 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 = ll_ringbuffer_create(device->UpdateSize*device->NumUpdates + 1,
- InputType.Format.nBlockAlign);
- if(self->Ring == NULL)
- hr = DSERR_OUTOFMEMORY;
- }
- if(FAILED(hr))
- {
- ERR("Device init failed: 0x%08lx\n", hr);
- ll_ringbuffer_free(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)
- {
- ll_ringbuffer_free(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)
- {
- ll_ringbuffer_read(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))
- {
- ll_ringbuffer_write(self->Ring, ReadPtr1, ReadCnt1/FrameSize);
- if(ReadPtr2 != NULL)
- ll_ringbuffer_write(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 ll_ringbuffer_read_space(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;
- }
|