2007-11-14 02:02:18 +00:00
|
|
|
/**
|
|
|
|
* 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
* Or go to http://www.gnu.org/copyleft/lgpl.html
|
|
|
|
*/
|
|
|
|
|
2008-01-16 22:09:04 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2008-03-01 09:39:42 +00:00
|
|
|
#define _WIN32_WINNT 0x0500
|
2008-02-01 16:17:57 +00:00
|
|
|
#define INITGUID
|
2007-11-14 02:02:18 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <memory.h>
|
|
|
|
|
|
|
|
#include <dsound.h>
|
2008-02-14 03:42:47 +00:00
|
|
|
#include <mmreg.h>
|
2009-06-08 02:11:46 +00:00
|
|
|
#ifndef _WAVEFORMATEXTENSIBLE_
|
|
|
|
#include <ks.h>
|
|
|
|
#include <ksmedia.h>
|
|
|
|
#endif
|
2007-11-14 02:02:18 +00:00
|
|
|
|
|
|
|
#include "alMain.h"
|
|
|
|
#include "AL/al.h"
|
|
|
|
#include "AL/alc.h"
|
|
|
|
|
2009-05-14 12:24:18 +00:00
|
|
|
#ifndef DSSPEAKER_5POINT1
|
|
|
|
#define DSSPEAKER_5POINT1 6
|
|
|
|
#endif
|
2008-01-25 13:02:00 +00:00
|
|
|
#ifndef DSSPEAKER_7POINT1
|
|
|
|
#define DSSPEAKER_7POINT1 7
|
|
|
|
#endif
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-02-01 16:17:57 +00:00
|
|
|
DEFINE_GUID(KSDATAFORMAT_SUBTYPE_PCM, 0x00000001, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
|
2009-08-15 20:20:35 +00:00
|
|
|
DEFINE_GUID(KSDATAFORMAT_SUBTYPE_IEEE_FLOAT, 0x00000003, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
|
2008-02-01 16:17:57 +00:00
|
|
|
|
2009-03-10 09:46:42 +00:00
|
|
|
static void *ds_handle;
|
|
|
|
static HRESULT (WINAPI *pDirectSoundCreate)(LPCGUID pcGuidDevice, LPDIRECTSOUND *ppDS, LPUNKNOWN pUnkOuter);
|
|
|
|
static HRESULT (WINAPI *pDirectSoundEnumerateA)(LPDSENUMCALLBACKA pDSEnumCallback, LPVOID pContext);
|
|
|
|
|
2008-11-21 15:48:03 +00:00
|
|
|
// Since DSound doesn't report the fragment size, emulate it
|
|
|
|
static int num_frags;
|
2008-02-13 03:24:08 +00:00
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
typedef struct {
|
|
|
|
// DirectSound Playback Device
|
|
|
|
LPDIRECTSOUND lpDS;
|
|
|
|
LPDIRECTSOUNDBUFFER DSpbuffer;
|
|
|
|
LPDIRECTSOUNDBUFFER DSsbuffer;
|
2008-01-08 15:09:25 +00:00
|
|
|
|
2008-07-11 03:36:28 +00:00
|
|
|
volatile int killNow;
|
2008-01-08 15:09:25 +00:00
|
|
|
ALvoid *thread;
|
2007-11-14 02:02:18 +00:00
|
|
|
} DSoundData;
|
|
|
|
|
|
|
|
|
2008-02-09 04:46:34 +00:00
|
|
|
typedef struct {
|
|
|
|
ALCchar *name;
|
|
|
|
GUID guid;
|
|
|
|
} DevMap;
|
2009-08-27 08:47:41 +00:00
|
|
|
static DevMap *DeviceList;
|
|
|
|
static ALuint NumDevices;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-01-08 15:09:25 +00:00
|
|
|
|
|
|
|
static ALuint DSoundProc(ALvoid *ptr)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
2008-01-08 15:09:25 +00:00
|
|
|
ALCdevice *pDevice = (ALCdevice*)ptr;
|
|
|
|
DSoundData *pData = (DSoundData*)pDevice->ExtraData;
|
2009-05-27 14:02:33 +00:00
|
|
|
DSBCAPS DSBCaps;
|
2008-01-08 15:09:25 +00:00
|
|
|
DWORD LastCursor = 0;
|
|
|
|
DWORD PlayCursor;
|
2008-01-25 12:42:44 +00:00
|
|
|
VOID *WritePtr1, *WritePtr2;
|
|
|
|
DWORD WriteCnt1, WriteCnt2;
|
2009-05-27 14:02:33 +00:00
|
|
|
DWORD FragSize;
|
2008-01-08 15:09:25 +00:00
|
|
|
DWORD avail;
|
|
|
|
HRESULT err;
|
|
|
|
|
2009-05-27 14:02:33 +00:00
|
|
|
memset(&DSBCaps, 0, sizeof(DSBCaps));
|
|
|
|
DSBCaps.dwSize = sizeof(DSBCaps);
|
|
|
|
err = IDirectSoundBuffer_GetCaps(pData->DSsbuffer, &DSBCaps);
|
|
|
|
if(FAILED(err))
|
|
|
|
{
|
|
|
|
AL_PRINT("Failed to get buffer caps: 0x%lx\n", err);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
FragSize = DSBCaps.dwBufferBytes / num_frags;
|
2008-01-27 05:10:55 +00:00
|
|
|
|
2009-05-27 14:02:33 +00:00
|
|
|
IDirectSoundBuffer_GetCurrentPosition(pData->DSsbuffer, &LastCursor, NULL);
|
2008-01-08 15:09:25 +00:00
|
|
|
while(!pData->killNow)
|
|
|
|
{
|
|
|
|
// Get current play and write cursors
|
|
|
|
IDirectSoundBuffer_GetCurrentPosition(pData->DSsbuffer, &PlayCursor, NULL);
|
2009-05-27 14:02:33 +00:00
|
|
|
avail = (PlayCursor-LastCursor+DSBCaps.dwBufferBytes) % DSBCaps.dwBufferBytes;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-05-27 14:02:33 +00:00
|
|
|
if(avail < FragSize)
|
2008-01-08 15:09:25 +00:00
|
|
|
{
|
|
|
|
Sleep(1);
|
|
|
|
continue;
|
|
|
|
}
|
2009-05-27 14:02:33 +00:00
|
|
|
avail -= avail%FragSize;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-01-08 15:09:25 +00:00
|
|
|
// Lock output buffer
|
2008-01-25 12:42:44 +00:00
|
|
|
WriteCnt1 = 0;
|
|
|
|
WriteCnt2 = 0;
|
|
|
|
err = IDirectSoundBuffer_Lock(pData->DSsbuffer, LastCursor, avail, &WritePtr1, &WriteCnt1, &WritePtr2, &WriteCnt2, 0);
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-01-08 15:09:25 +00:00
|
|
|
// If the buffer is lost, restore it, play and lock
|
|
|
|
if(err == DSERR_BUFFERLOST)
|
|
|
|
{
|
|
|
|
err = IDirectSoundBuffer_Restore(pData->DSsbuffer);
|
|
|
|
if(SUCCEEDED(err))
|
|
|
|
err = IDirectSoundBuffer_Play(pData->DSsbuffer, 0, 0, DSBPLAY_LOOPING);
|
|
|
|
if(SUCCEEDED(err))
|
2008-01-25 12:42:44 +00:00
|
|
|
err = IDirectSoundBuffer_Lock(pData->DSsbuffer, LastCursor, avail, &WritePtr1, &WriteCnt1, &WritePtr2, &WriteCnt2, 0);
|
2008-01-08 15:09:25 +00:00
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-01-08 15:09:25 +00:00
|
|
|
// Successfully locked the output buffer
|
|
|
|
if(SUCCEEDED(err))
|
|
|
|
{
|
|
|
|
// If we have an active context, mix data directly into output buffer otherwise fill with silence
|
|
|
|
SuspendContext(NULL);
|
2008-01-25 12:42:44 +00:00
|
|
|
aluMixData(pDevice->Context, WritePtr1, WriteCnt1, pDevice->Format);
|
|
|
|
aluMixData(pDevice->Context, WritePtr2, WriteCnt2, pDevice->Format);
|
2008-01-08 15:09:25 +00:00
|
|
|
ProcessContext(NULL);
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-01-08 15:09:25 +00:00
|
|
|
// Unlock output buffer only when successfully locked
|
2008-01-25 12:42:44 +00:00
|
|
|
IDirectSoundBuffer_Unlock(pData->DSsbuffer, WritePtr1, WriteCnt1, WritePtr2, WriteCnt2);
|
2008-01-08 15:09:25 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
AL_PRINT("Buffer lock error: %#lx\n", err);
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-01-08 15:09:25 +00:00
|
|
|
// Update old write cursor location
|
2008-01-25 12:42:44 +00:00
|
|
|
LastCursor += WriteCnt1+WriteCnt2;
|
2009-05-27 14:02:33 +00:00
|
|
|
LastCursor %= DSBCaps.dwBufferBytes;
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
|
|
|
|
2008-01-08 15:09:25 +00:00
|
|
|
return 0;
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ALCboolean DSoundOpenPlayback(ALCdevice *device, const ALCchar *deviceName)
|
|
|
|
{
|
|
|
|
DSoundData *pData = NULL;
|
2009-08-27 09:53:09 +00:00
|
|
|
const char *devName;
|
2008-02-09 04:46:34 +00:00
|
|
|
LPGUID guid = NULL;
|
2007-11-14 02:02:18 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-03-10 09:46:42 +00:00
|
|
|
if(ds_handle == NULL)
|
|
|
|
return ALC_FALSE;
|
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
if(deviceName)
|
|
|
|
{
|
|
|
|
int i;
|
2008-02-09 04:46:34 +00:00
|
|
|
for(i = 0;DeviceList[i].name;i++)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
2008-02-09 04:46:34 +00:00
|
|
|
if(strcmp(deviceName, DeviceList[i].name) == 0)
|
2007-12-14 16:51:45 +00:00
|
|
|
{
|
2009-08-27 09:53:09 +00:00
|
|
|
devName = DeviceList[i].name;
|
2008-02-09 04:46:34 +00:00
|
|
|
if(i > 0)
|
|
|
|
guid = &DeviceList[i].guid;
|
2007-12-14 16:51:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
2008-02-09 04:46:34 +00:00
|
|
|
if(!DeviceList[i].name)
|
2007-11-14 02:02:18 +00:00
|
|
|
return ALC_FALSE;
|
|
|
|
}
|
2007-12-14 16:51:45 +00:00
|
|
|
else
|
2009-08-27 09:53:09 +00:00
|
|
|
devName = DeviceList[0].name;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
|
|
|
//Initialise requested device
|
|
|
|
|
|
|
|
pData = calloc(1, sizeof(DSoundData));
|
|
|
|
if(!pData)
|
|
|
|
{
|
|
|
|
SetALCError(ALC_OUT_OF_MEMORY);
|
|
|
|
return ALC_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//DirectSound Init code
|
2009-03-10 09:46:42 +00:00
|
|
|
hr = pDirectSoundCreate(guid, &pData->lpDS, NULL);
|
2007-11-14 02:02:18 +00:00
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
hr = IDirectSound_SetCooperativeLevel(pData->lpDS, GetForegroundWindow(), DSSCL_PRIORITY);
|
2009-08-13 20:11:05 +00:00
|
|
|
if(FAILED(hr))
|
|
|
|
{
|
|
|
|
if(pData->lpDS)
|
|
|
|
IDirectSound_Release(pData->lpDS);
|
|
|
|
free(pData);
|
|
|
|
return ALC_FALSE;
|
|
|
|
}
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-08-27 09:53:09 +00:00
|
|
|
device->szDeviceName = strdup(devName);
|
2009-08-13 20:11:05 +00:00
|
|
|
device->ExtraData = pData;
|
|
|
|
return ALC_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DSoundClosePlayback(ALCdevice *device)
|
|
|
|
{
|
|
|
|
DSoundData *pData = device->ExtraData;
|
|
|
|
|
|
|
|
IDirectSound_Release(pData->lpDS);
|
|
|
|
free(pData);
|
|
|
|
device->ExtraData = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ALCboolean DSoundStartContext(ALCdevice *device, ALCcontext *context)
|
|
|
|
{
|
|
|
|
DSoundData *pData = (DSoundData*)device->ExtraData;
|
|
|
|
DSBUFFERDESC DSBDescription;
|
|
|
|
WAVEFORMATEXTENSIBLE OutputType;
|
|
|
|
DWORD frameSize = 0;
|
|
|
|
ALenum format = 0;
|
|
|
|
DWORD speakers;
|
|
|
|
HRESULT hr;
|
|
|
|
(void)context;
|
|
|
|
|
|
|
|
memset(&OutputType, 0, sizeof(OutputType));
|
|
|
|
|
|
|
|
hr = IDirectSound_GetSpeakerConfig(pData->lpDS, &speakers);
|
2009-08-14 14:27:19 +00:00
|
|
|
if(SUCCEEDED(hr) && *(GetConfigValue(NULL, "format", "")) != 0)
|
2008-06-05 01:33:02 +00:00
|
|
|
{
|
2009-08-13 20:11:05 +00:00
|
|
|
if(device->Format == AL_FORMAT_MONO8 || device->Format == AL_FORMAT_MONO16)
|
|
|
|
speakers = DSSPEAKER_COMBINED(DSSPEAKER_MONO, 0);
|
|
|
|
else if(device->Format == AL_FORMAT_STEREO8 || device->Format == AL_FORMAT_STEREO16)
|
|
|
|
speakers = DSSPEAKER_COMBINED(DSSPEAKER_STEREO, 0);
|
|
|
|
else if(device->Format == AL_FORMAT_QUAD8 || device->Format == AL_FORMAT_QUAD16)
|
|
|
|
speakers = DSSPEAKER_COMBINED(DSSPEAKER_QUAD, 0);
|
|
|
|
else if(device->Format == AL_FORMAT_51CHN8 || device->Format == AL_FORMAT_51CHN16)
|
|
|
|
speakers = DSSPEAKER_COMBINED(DSSPEAKER_5POINT1, 0);
|
|
|
|
else if(device->Format == AL_FORMAT_71CHN8 || device->Format == AL_FORMAT_71CHN16)
|
|
|
|
speakers = DSSPEAKER_COMBINED(DSSPEAKER_7POINT1, 0);
|
2008-06-05 01:33:02 +00:00
|
|
|
}
|
2008-01-25 13:02:00 +00:00
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
speakers = DSSPEAKER_CONFIG(speakers);
|
|
|
|
if(speakers == DSSPEAKER_MONO)
|
|
|
|
{
|
2008-01-27 05:09:08 +00:00
|
|
|
if(aluBytesFromFormat(device->Format) == 1)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_MONO8;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 2)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_MONO16;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 4)
|
|
|
|
format = AL_FORMAT_MONO_FLOAT32;
|
2008-01-25 13:02:00 +00:00
|
|
|
}
|
|
|
|
else if(speakers == DSSPEAKER_STEREO)
|
|
|
|
{
|
2008-01-27 05:09:08 +00:00
|
|
|
if(aluBytesFromFormat(device->Format) == 1)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_STEREO8;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 2)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_STEREO16;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 4)
|
|
|
|
format = AL_FORMAT_STEREO_FLOAT32;
|
2008-01-25 13:02:00 +00:00
|
|
|
}
|
|
|
|
else if(speakers == DSSPEAKER_QUAD)
|
|
|
|
{
|
2008-01-27 05:09:08 +00:00
|
|
|
if(aluBytesFromFormat(device->Format) == 1)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_QUAD8;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 2)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_QUAD16;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 4)
|
|
|
|
format = AL_FORMAT_QUAD32;
|
2008-02-01 16:17:57 +00:00
|
|
|
OutputType.dwChannelMask = SPEAKER_FRONT_LEFT |
|
|
|
|
SPEAKER_FRONT_RIGHT |
|
|
|
|
SPEAKER_BACK_LEFT |
|
|
|
|
SPEAKER_BACK_RIGHT;
|
2008-01-25 13:02:00 +00:00
|
|
|
}
|
|
|
|
else if(speakers == DSSPEAKER_5POINT1)
|
|
|
|
{
|
2008-01-27 05:09:08 +00:00
|
|
|
if(aluBytesFromFormat(device->Format) == 1)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_51CHN8;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 2)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_51CHN16;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 4)
|
|
|
|
format = AL_FORMAT_51CHN32;
|
2008-02-01 16:17:57 +00:00
|
|
|
OutputType.dwChannelMask = SPEAKER_FRONT_LEFT |
|
|
|
|
SPEAKER_FRONT_RIGHT |
|
|
|
|
SPEAKER_FRONT_CENTER |
|
|
|
|
SPEAKER_LOW_FREQUENCY |
|
|
|
|
SPEAKER_BACK_LEFT |
|
|
|
|
SPEAKER_BACK_RIGHT;
|
2008-01-25 13:02:00 +00:00
|
|
|
}
|
|
|
|
else if(speakers == DSSPEAKER_7POINT1)
|
|
|
|
{
|
2008-01-27 05:09:08 +00:00
|
|
|
if(aluBytesFromFormat(device->Format) == 1)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_71CHN8;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 2)
|
2009-05-27 14:02:33 +00:00
|
|
|
format = AL_FORMAT_71CHN16;
|
2009-08-15 20:20:35 +00:00
|
|
|
else if(aluBytesFromFormat(device->Format) == 4)
|
|
|
|
format = AL_FORMAT_71CHN32;
|
2008-02-01 16:17:57 +00:00
|
|
|
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;
|
2008-01-25 13:02:00 +00:00
|
|
|
}
|
2009-05-27 14:02:33 +00:00
|
|
|
else
|
|
|
|
format = device->Format;
|
|
|
|
frameSize = aluBytesFromFormat(format) * aluChannelsFromFormat(format);
|
2008-01-25 13:02:00 +00:00
|
|
|
|
2008-02-01 16:17:57 +00:00
|
|
|
OutputType.Format.wFormatTag = WAVE_FORMAT_PCM;
|
2009-05-27 14:02:33 +00:00
|
|
|
OutputType.Format.nChannels = aluChannelsFromFormat(format);
|
|
|
|
OutputType.Format.wBitsPerSample = aluBytesFromFormat(format) * 8;
|
2008-02-01 16:17:57 +00:00
|
|
|
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;
|
2008-01-25 13:02:00 +00:00
|
|
|
}
|
|
|
|
|
2009-08-15 20:20:35 +00:00
|
|
|
if(OutputType.Format.nChannels > 2 || OutputType.Format.wBitsPerSample > 16)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
2008-02-01 16:17:57 +00:00
|
|
|
OutputType.Format.wFormatTag = WAVE_FORMAT_EXTENSIBLE;
|
|
|
|
OutputType.Samples.wValidBitsPerSample = OutputType.Format.wBitsPerSample;
|
|
|
|
OutputType.Format.cbSize = 22;
|
2009-08-15 20:20:35 +00:00
|
|
|
if(OutputType.Format.wBitsPerSample == 32)
|
|
|
|
OutputType.SubFormat = KSDATAFORMAT_SUBTYPE_IEEE_FLOAT;
|
|
|
|
else
|
|
|
|
OutputType.SubFormat = KSDATAFORMAT_SUBTYPE_PCM;
|
2008-02-01 16:17:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
memset(&DSBDescription,0,sizeof(DSBUFFERDESC));
|
|
|
|
DSBDescription.dwSize=sizeof(DSBUFFERDESC);
|
|
|
|
DSBDescription.dwFlags=DSBCAPS_PRIMARYBUFFER;
|
|
|
|
hr = IDirectSound_CreateSoundBuffer(pData->lpDS, &DSBDescription, &pData->DSpbuffer, NULL);
|
|
|
|
}
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
hr = IDirectSoundBuffer_SetFormat(pData->DSpbuffer,&OutputType.Format);
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
memset(&DSBDescription,0,sizeof(DSBUFFERDESC));
|
|
|
|
DSBDescription.dwSize=sizeof(DSBUFFERDESC);
|
|
|
|
DSBDescription.dwFlags=DSBCAPS_GLOBALFOCUS|DSBCAPS_GETCURRENTPOSITION2;
|
2009-08-13 19:28:46 +00:00
|
|
|
DSBDescription.dwBufferBytes=(device->BufferSize/num_frags) * num_frags * frameSize;
|
2008-02-01 16:17:57 +00:00
|
|
|
DSBDescription.lpwfxFormat=&OutputType.Format;
|
2007-11-14 02:02:18 +00:00
|
|
|
hr = IDirectSound_CreateSoundBuffer(pData->lpDS, &DSBDescription, &pData->DSsbuffer, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
hr = IDirectSoundBuffer_Play(pData->DSsbuffer, 0, 0, DSBPLAY_LOOPING);
|
|
|
|
|
2008-03-01 08:57:37 +00:00
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
device->ExtraData = pData;
|
|
|
|
pData->thread = StartThread(DSoundProc, device);
|
|
|
|
if(!pData->thread)
|
|
|
|
hr = E_FAIL;
|
|
|
|
}
|
2008-01-08 15:09:25 +00:00
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
if(FAILED(hr))
|
|
|
|
{
|
|
|
|
if (pData->DSsbuffer)
|
|
|
|
IDirectSoundBuffer_Release(pData->DSsbuffer);
|
2009-08-13 20:11:05 +00:00
|
|
|
pData->DSsbuffer = NULL;
|
2007-11-14 02:02:18 +00:00
|
|
|
if (pData->DSpbuffer)
|
|
|
|
IDirectSoundBuffer_Release(pData->DSpbuffer);
|
2009-08-13 20:11:05 +00:00
|
|
|
pData->DSpbuffer = NULL;
|
2007-11-14 02:02:18 +00:00
|
|
|
return ALC_FALSE;
|
|
|
|
}
|
|
|
|
|
2009-05-27 14:02:33 +00:00
|
|
|
device->Format = format;
|
2009-08-13 19:28:46 +00:00
|
|
|
device->UpdateSize = device->BufferSize/num_frags;
|
2009-05-27 14:02:33 +00:00
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
return ALC_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-08-13 20:11:05 +00:00
|
|
|
static void DSoundStopContext(ALCdevice *device, ALCcontext *context)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
|
|
|
DSoundData *pData = device->ExtraData;
|
2009-08-13 20:11:05 +00:00
|
|
|
(void)context;
|
|
|
|
|
|
|
|
if(!pData->thread)
|
|
|
|
return;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-01-08 15:09:25 +00:00
|
|
|
pData->killNow = 1;
|
|
|
|
StopThread(pData->thread);
|
2009-08-13 20:11:05 +00:00
|
|
|
pData->thread = NULL;
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2008-01-08 15:09:25 +00:00
|
|
|
IDirectSoundBuffer_Release(pData->DSsbuffer);
|
2009-08-13 20:11:05 +00:00
|
|
|
pData->DSsbuffer = NULL;
|
2008-02-01 16:17:57 +00:00
|
|
|
if (pData->DSpbuffer)
|
|
|
|
IDirectSoundBuffer_Release(pData->DSpbuffer);
|
2009-08-13 20:11:05 +00:00
|
|
|
pData->DSpbuffer = NULL;
|
2009-08-13 19:28:46 +00:00
|
|
|
}
|
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
|
2009-08-14 02:36:14 +00:00
|
|
|
static ALCboolean DSoundOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName)
|
2007-11-14 02:02:18 +00:00
|
|
|
{
|
|
|
|
(void)pDevice;
|
|
|
|
(void)deviceName;
|
|
|
|
return ALC_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DSoundCloseCapture(ALCdevice *pDevice)
|
|
|
|
{
|
|
|
|
(void)pDevice;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DSoundStartCapture(ALCdevice *pDevice)
|
|
|
|
{
|
|
|
|
(void)pDevice;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DSoundStopCapture(ALCdevice *pDevice)
|
|
|
|
{
|
|
|
|
(void)pDevice;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DSoundCaptureSamples(ALCdevice *pDevice, ALCvoid *pBuffer, ALCuint lSamples)
|
|
|
|
{
|
|
|
|
(void)pDevice;
|
|
|
|
(void)pBuffer;
|
|
|
|
(void)lSamples;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ALCuint DSoundAvailableSamples(ALCdevice *pDevice)
|
|
|
|
{
|
|
|
|
(void)pDevice;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BackendFuncs DSoundFuncs = {
|
|
|
|
DSoundOpenPlayback,
|
|
|
|
DSoundClosePlayback,
|
2009-08-13 19:28:46 +00:00
|
|
|
DSoundStartContext,
|
|
|
|
DSoundStopContext,
|
2007-11-14 02:02:18 +00:00
|
|
|
DSoundOpenCapture,
|
|
|
|
DSoundCloseCapture,
|
|
|
|
DSoundStartCapture,
|
|
|
|
DSoundStopCapture,
|
|
|
|
DSoundCaptureSamples,
|
|
|
|
DSoundAvailableSamples
|
|
|
|
};
|
|
|
|
|
2008-02-09 04:46:34 +00:00
|
|
|
static BOOL CALLBACK DSoundEnumDevices(LPGUID guid, LPCSTR desc, LPCSTR drvname, LPVOID data)
|
|
|
|
{
|
2009-08-27 08:47:41 +00:00
|
|
|
(void)data;
|
2008-02-09 04:46:34 +00:00
|
|
|
(void)drvname;
|
|
|
|
|
|
|
|
if(guid)
|
|
|
|
{
|
|
|
|
char str[128];
|
2009-08-27 08:47:41 +00:00
|
|
|
void *temp;
|
|
|
|
|
|
|
|
temp = realloc(DeviceList, sizeof(DevMap) * (NumDevices+1));
|
|
|
|
if(temp)
|
|
|
|
{
|
|
|
|
DeviceList = temp;
|
|
|
|
|
|
|
|
snprintf(str, sizeof(str), "DirectSound Software on %s", desc);
|
|
|
|
AppendAllDeviceList(str);
|
|
|
|
|
|
|
|
DeviceList[NumDevices].name = strdup(str);
|
|
|
|
DeviceList[NumDevices].guid = *guid;
|
|
|
|
NumDevices++;
|
|
|
|
}
|
2008-02-09 04:46:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
void alcDSoundInit(BackendFuncs *FuncList)
|
|
|
|
{
|
2008-02-09 04:46:34 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2007-11-14 02:02:18 +00:00
|
|
|
*FuncList = DSoundFuncs;
|
|
|
|
|
2009-03-10 09:46:42 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
ds_handle = LoadLibraryA("dsound.dll");
|
|
|
|
if(ds_handle == NULL)
|
|
|
|
{
|
|
|
|
AL_PRINT("Failed to load dsound.dll\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define LOAD_FUNC(f) do { \
|
|
|
|
p##f = (void*)GetProcAddress((HMODULE)ds_handle, #f); \
|
|
|
|
if(p##f == NULL) \
|
|
|
|
{ \
|
|
|
|
FreeLibrary(ds_handle); \
|
|
|
|
ds_handle = NULL; \
|
|
|
|
AL_PRINT("Could not load %s from dsound.dll\n", #f); \
|
|
|
|
return; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
#else
|
|
|
|
ds_handle = (void*)0xDEADBEEF;
|
|
|
|
#define LOAD_FUNC(f) p##f = f
|
|
|
|
#endif
|
|
|
|
|
|
|
|
LOAD_FUNC(DirectSoundCreate);
|
|
|
|
LOAD_FUNC(DirectSoundEnumerateA);
|
|
|
|
#undef LOAD_FUNC
|
|
|
|
|
2008-11-21 15:48:03 +00:00
|
|
|
num_frags = GetConfigValueInt("dsound", "periods", 4);
|
|
|
|
if(num_frags < 2) num_frags = 2;
|
|
|
|
|
2009-08-27 08:47:41 +00:00
|
|
|
DeviceList = malloc(sizeof(DevMap) * 1);
|
|
|
|
DeviceList[0].name = strdup("DirectSound Software");
|
|
|
|
NumDevices = 1;
|
|
|
|
|
|
|
|
AppendDeviceList(DeviceList[0].name);
|
|
|
|
|
|
|
|
hr = pDirectSoundEnumerateA(DSoundEnumDevices, NULL);
|
2008-02-09 04:46:34 +00:00
|
|
|
if(FAILED(hr))
|
|
|
|
AL_PRINT("Error enumerating DirectSound devices (%#x)!\n", (unsigned int)hr);
|
2007-11-14 02:02:18 +00:00
|
|
|
}
|
2009-08-27 06:45:00 +00:00
|
|
|
|
|
|
|
void alcDSoundDeinit(void)
|
|
|
|
{
|
2009-08-27 08:47:41 +00:00
|
|
|
ALuint i;
|
|
|
|
|
|
|
|
for(i = 0;i < NumDevices;++i)
|
|
|
|
free(DeviceList[i].name);
|
|
|
|
free(DeviceList);
|
|
|
|
DeviceList = NULL;
|
|
|
|
NumDevices = 0;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
FreeLibrary(ds_handle);
|
|
|
|
ds_handle = NULL;
|
|
|
|
#endif
|
2009-08-27 06:45:00 +00:00
|
|
|
}
|