2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/aldlist.h"
|
|
|
|
#include "AudioCommon/DPL2Decoder.h"
|
2014-02-19 01:11:52 +00:00
|
|
|
#include "AudioCommon/OpenALStream.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
#if defined HAVE_OPENAL && HAVE_OPENAL
|
|
|
|
|
2013-01-09 16:26:12 +00:00
|
|
|
soundtouch::SoundTouch soundTouch;
|
2013-01-09 11:57:32 +00:00
|
|
|
|
2009-12-20 13:54:14 +00:00
|
|
|
//
|
|
|
|
// AyuanX: Spec says OpenAL1.1 is thread safe already
|
|
|
|
//
|
2009-07-06 02:10:26 +00:00
|
|
|
bool OpenALStream::Start()
|
|
|
|
{
|
|
|
|
ALDeviceList *pDeviceList = NULL;
|
|
|
|
ALCcontext *pContext = NULL;
|
|
|
|
ALCdevice *pDevice = NULL;
|
|
|
|
bool bReturn = false;
|
2009-12-18 19:52:04 +00:00
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
pDeviceList = new ALDeviceList();
|
|
|
|
if ((pDeviceList) && (pDeviceList->GetNumDevices()))
|
|
|
|
{
|
2013-01-11 03:03:09 +00:00
|
|
|
char *defDevName = pDeviceList->GetDeviceName(pDeviceList->GetDefaultDevice());
|
|
|
|
|
|
|
|
WARN_LOG(AUDIO, "Found OpenAL device %s", defDevName);
|
|
|
|
|
2010-12-07 22:38:03 +00:00
|
|
|
pDevice = alcOpenDevice(defDevName);
|
2009-07-06 02:10:26 +00:00
|
|
|
if (pDevice)
|
|
|
|
{
|
|
|
|
pContext = alcCreateContext(pDevice, NULL);
|
|
|
|
if (pContext)
|
|
|
|
{
|
2013-01-12 13:05:30 +00:00
|
|
|
// Used to determine an appropriate period size (2x period = total buffer size)
|
|
|
|
//ALCint refresh;
|
|
|
|
//alcGetIntegerv(pDevice, ALC_REFRESH, 1, &refresh);
|
|
|
|
//period_size_in_millisec = 1000 / refresh;
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
alcMakeContextCurrent(pContext);
|
2013-01-24 04:38:49 +00:00
|
|
|
thread = std::thread(std::mem_fun(&OpenALStream::SoundLoop), this);
|
2009-07-06 02:10:26 +00:00
|
|
|
bReturn = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
alcCloseDevice(pDevice);
|
2013-01-11 03:03:09 +00:00
|
|
|
PanicAlertT("OpenAL: can't create context for device %s", defDevName);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
2009-12-20 02:23:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-13 02:05:58 +00:00
|
|
|
PanicAlertT("OpenAL: can't open device %s", defDevName);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
delete pDeviceList;
|
2009-12-20 02:23:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-13 02:05:58 +00:00
|
|
|
PanicAlertT("OpenAL: can't find sound devices");
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
2013-04-19 13:21:45 +00:00
|
|
|
// Initialize DPL2 parameters
|
2013-01-11 03:03:09 +00:00
|
|
|
dpl2reset();
|
|
|
|
|
2013-01-09 11:57:32 +00:00
|
|
|
soundTouch.clear();
|
2009-07-06 02:10:26 +00:00
|
|
|
return bReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpenALStream::Stop()
|
|
|
|
{
|
|
|
|
threadData = 1;
|
|
|
|
// kick the thread if it's waiting
|
|
|
|
soundSyncEvent.Set();
|
2009-12-18 19:52:04 +00:00
|
|
|
|
2013-01-09 11:57:32 +00:00
|
|
|
soundTouch.clear();
|
|
|
|
|
2011-01-27 20:47:58 +00:00
|
|
|
thread.join();
|
2009-12-18 19:52:04 +00:00
|
|
|
|
2009-12-20 02:23:26 +00:00
|
|
|
alSourceStop(uiSource);
|
|
|
|
alSourcei(uiSource, AL_BUFFER, 0);
|
2009-12-18 19:52:04 +00:00
|
|
|
|
|
|
|
// Clean up buffers and sources
|
2009-12-20 02:23:26 +00:00
|
|
|
alDeleteSources(1, &uiSource);
|
2009-12-20 13:54:14 +00:00
|
|
|
uiSource = 0;
|
2013-01-12 13:05:30 +00:00
|
|
|
alDeleteBuffers(numBuffers, uiBuffers);
|
2009-12-18 19:52:04 +00:00
|
|
|
|
2009-12-20 02:23:26 +00:00
|
|
|
ALCcontext *pContext = alcGetCurrentContext();
|
|
|
|
ALCdevice *pDevice = alcGetContextsDevice(pContext);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
alcMakeContextCurrent(NULL);
|
|
|
|
alcDestroyContext(pContext);
|
|
|
|
alcCloseDevice(pDevice);
|
|
|
|
}
|
|
|
|
|
2009-12-20 13:54:14 +00:00
|
|
|
void OpenALStream::SetVolume(int volume)
|
|
|
|
{
|
|
|
|
fVolume = (float)volume / 100.0f;
|
|
|
|
|
|
|
|
if (uiSource)
|
2013-06-09 07:43:27 +00:00
|
|
|
alSourcef(uiSource, AL_GAIN, fVolume);
|
2009-12-20 13:54:14 +00:00
|
|
|
}
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
void OpenALStream::Update()
|
|
|
|
{
|
2009-12-20 02:23:26 +00:00
|
|
|
soundSyncEvent.Set();
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
2009-12-13 11:51:29 +00:00
|
|
|
void OpenALStream::Clear(bool mute)
|
2009-11-07 20:01:39 +00:00
|
|
|
{
|
2009-12-13 11:51:29 +00:00
|
|
|
m_muted = mute;
|
2009-12-18 19:52:04 +00:00
|
|
|
|
2009-12-13 11:51:29 +00:00
|
|
|
if(m_muted)
|
2009-12-12 22:30:53 +00:00
|
|
|
{
|
2013-01-09 11:57:32 +00:00
|
|
|
soundTouch.clear();
|
2009-12-20 02:23:26 +00:00
|
|
|
alSourceStop(uiSource);
|
2009-12-12 22:30:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-12-20 02:23:26 +00:00
|
|
|
alSourcePlay(uiSource);
|
2009-12-12 22:30:53 +00:00
|
|
|
}
|
2009-11-07 20:01:39 +00:00
|
|
|
}
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
void OpenALStream::SoundLoop()
|
|
|
|
{
|
2011-12-31 04:22:48 +00:00
|
|
|
Common::SetCurrentThreadName("Audio thread - openal");
|
|
|
|
|
2013-06-09 07:43:27 +00:00
|
|
|
bool surround_capable = Core::g_CoreStartupParameter.bDPL2Decoder;
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
bool float32_capable = false;
|
2013-06-13 16:38:05 +00:00
|
|
|
const ALenum AL_FORMAT_STEREO_FLOAT32 = 0;
|
2013-06-09 07:43:27 +00:00
|
|
|
// OSX does not have the alext AL_FORMAT_51CHN32 yet.
|
|
|
|
surround_capable = false;
|
2013-06-13 16:38:05 +00:00
|
|
|
const ALenum AL_FORMAT_51CHN32 = 0;
|
2013-06-09 07:43:27 +00:00
|
|
|
#else
|
|
|
|
bool float32_capable = true;
|
|
|
|
#endif
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
u32 ulFrequency = m_mixer->GetSampleRate();
|
2013-01-12 13:05:30 +00:00
|
|
|
numBuffers = Core::g_CoreStartupParameter.iLatency + 2; // OpenAL requires a minimum of two buffers
|
2009-12-20 02:23:26 +00:00
|
|
|
|
2013-01-12 13:05:30 +00:00
|
|
|
memset(uiBuffers, 0, numBuffers * sizeof(ALuint));
|
2009-12-20 02:23:26 +00:00
|
|
|
uiSource = 0;
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
// Generate some AL Buffers for streaming
|
2013-01-12 13:05:30 +00:00
|
|
|
alGenBuffers(numBuffers, (ALuint *)uiBuffers);
|
2009-07-06 02:10:26 +00:00
|
|
|
// Generate a Source to playback the Buffers
|
|
|
|
alGenSources(1, &uiSource);
|
|
|
|
|
2009-12-23 15:34:14 +00:00
|
|
|
// Short Silence
|
2013-06-09 07:43:27 +00:00
|
|
|
memset(sampleBuffer, 0, OAL_MAX_SAMPLES * numBuffers * FRAME_SURROUND_FLOAT);
|
|
|
|
memset(realtimeBuffer, 0, OAL_MAX_SAMPLES * FRAME_STEREO_SHORT);
|
2013-01-12 13:05:30 +00:00
|
|
|
for (int i = 0; i < numBuffers; i++)
|
2013-01-11 03:03:09 +00:00
|
|
|
{
|
2013-06-09 07:43:27 +00:00
|
|
|
if (surround_capable)
|
|
|
|
alBufferData(uiBuffers[i], AL_FORMAT_51CHN32, sampleBuffer, 4 * FRAME_SURROUND_FLOAT, ulFrequency);
|
2013-01-11 03:03:09 +00:00
|
|
|
else
|
2013-06-09 07:43:27 +00:00
|
|
|
alBufferData(uiBuffers[i], AL_FORMAT_STEREO16, realtimeBuffer, 4 * FRAME_STEREO_SHORT, ulFrequency);
|
2013-01-11 03:03:09 +00:00
|
|
|
}
|
2013-01-12 13:05:30 +00:00
|
|
|
alSourceQueueBuffers(uiSource, numBuffers, uiBuffers);
|
2009-07-06 02:10:26 +00:00
|
|
|
alSourcePlay(uiSource);
|
2013-06-09 07:43:27 +00:00
|
|
|
|
2010-02-07 19:36:29 +00:00
|
|
|
// Set the default sound volume as saved in the config file.
|
2013-06-09 07:43:27 +00:00
|
|
|
alSourcef(uiSource, AL_GAIN, fVolume);
|
2009-12-23 15:34:14 +00:00
|
|
|
|
2009-12-20 02:23:26 +00:00
|
|
|
// TODO: Error handling
|
2012-12-10 06:40:28 +00:00
|
|
|
//ALenum err = alGetError();
|
2009-12-20 02:23:26 +00:00
|
|
|
|
|
|
|
ALint iBuffersFilled = 0;
|
|
|
|
ALint iBuffersProcessed = 0;
|
2013-01-11 08:42:03 +00:00
|
|
|
ALint iState = 0;
|
2013-01-12 13:05:30 +00:00
|
|
|
ALuint uiBufferTemp[OAL_MAX_BUFFERS] = {0};
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-09 11:57:32 +00:00
|
|
|
soundTouch.setChannels(2);
|
|
|
|
soundTouch.setSampleRate(ulFrequency);
|
2013-01-15 11:29:26 +00:00
|
|
|
soundTouch.setTempo(1.0);
|
2013-01-09 11:57:32 +00:00
|
|
|
soundTouch.setSetting(SETTING_USE_QUICKSEEK, 0);
|
|
|
|
soundTouch.setSetting(SETTING_USE_AA_FILTER, 0);
|
|
|
|
soundTouch.setSetting(SETTING_SEQUENCE_MS, 1);
|
|
|
|
soundTouch.setSetting(SETTING_SEEKWINDOW_MS, 28);
|
|
|
|
soundTouch.setSetting(SETTING_OVERLAP_MS, 12);
|
|
|
|
|
2013-06-09 07:43:27 +00:00
|
|
|
while (!threadData)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2013-01-07 04:37:08 +00:00
|
|
|
// num_samples_to_render in this update - depends on SystemTimers::AUDIO_DMA_PERIOD.
|
|
|
|
const u32 stereo_16_bit_size = 4;
|
|
|
|
const u32 dma_length = 32;
|
|
|
|
const u64 ais_samples_per_second = 48000 * stereo_16_bit_size;
|
2013-01-09 11:57:32 +00:00
|
|
|
u64 audio_dma_period = SystemTimers::GetTicksPerSecond() / (AudioInterface::GetAIDSampleRate() * stereo_16_bit_size / dma_length);
|
|
|
|
u64 num_samples_to_render = (audio_dma_period * ais_samples_per_second) / SystemTimers::GetTicksPerSecond();
|
2009-12-23 15:34:14 +00:00
|
|
|
|
2013-01-07 04:37:08 +00:00
|
|
|
unsigned int numSamples = (unsigned int)num_samples_to_render;
|
2013-02-19 12:18:13 +00:00
|
|
|
unsigned int minSamples = surround_capable ? 240 : 0; // DPL2 accepts 240 samples minimum (FWRDURATION)
|
2013-01-07 04:37:08 +00:00
|
|
|
|
2013-01-09 11:57:32 +00:00
|
|
|
numSamples = (numSamples > OAL_MAX_SAMPLES) ? OAL_MAX_SAMPLES : numSamples;
|
2014-02-13 12:22:29 +00:00
|
|
|
numSamples = m_mixer->Mix(realtimeBuffer, numSamples, false);
|
2013-01-15 11:29:26 +00:00
|
|
|
|
|
|
|
// Convert the samples from short to float
|
2013-06-09 07:43:27 +00:00
|
|
|
float dest[OAL_MAX_SAMPLES * STEREO_CHANNELS];
|
|
|
|
for (u32 i = 0; i < numSamples * STEREO_CHANNELS; ++i)
|
|
|
|
dest[i] = (float)realtimeBuffer[i] / (1 << 16);
|
2013-01-15 11:29:26 +00:00
|
|
|
|
|
|
|
soundTouch.putSamples(dest, numSamples);
|
2013-01-09 11:57:32 +00:00
|
|
|
|
|
|
|
if (iBuffersProcessed == iBuffersFilled)
|
|
|
|
{
|
|
|
|
alGetSourcei(uiSource, AL_BUFFERS_PROCESSED, &iBuffersProcessed);
|
|
|
|
iBuffersFilled = 0;
|
|
|
|
}
|
|
|
|
|
2013-01-07 04:37:08 +00:00
|
|
|
if (iBuffersProcessed)
|
2009-12-20 02:23:26 +00:00
|
|
|
{
|
2013-01-09 11:57:32 +00:00
|
|
|
float rate = m_mixer->GetCurrentSpeed();
|
|
|
|
if (rate <= 0)
|
|
|
|
{
|
|
|
|
Core::RequestRefreshInfo();
|
|
|
|
rate = m_mixer->GetCurrentSpeed();
|
|
|
|
}
|
2013-01-11 12:06:20 +00:00
|
|
|
|
|
|
|
// Place a lower limit of 10% speed. When a game boots up, there will be
|
|
|
|
// many silence samples. These do not need to be timestretched.
|
|
|
|
if (rate > 0.10)
|
2013-01-09 11:57:32 +00:00
|
|
|
{
|
|
|
|
// Adjust SETTING_SEQUENCE_MS to balance between lag vs hollow audio
|
2013-01-09 13:06:35 +00:00
|
|
|
soundTouch.setSetting(SETTING_SEQUENCE_MS, (int)(1 / (rate * rate)));
|
2013-01-09 11:57:32 +00:00
|
|
|
soundTouch.setTempo(rate);
|
2013-02-19 12:18:13 +00:00
|
|
|
if (rate > 10)
|
|
|
|
{
|
|
|
|
soundTouch.clear();
|
|
|
|
}
|
2013-01-09 11:57:32 +00:00
|
|
|
}
|
2013-02-19 12:18:13 +00:00
|
|
|
|
2013-06-09 07:43:27 +00:00
|
|
|
unsigned int nSamples = soundTouch.receiveSamples(sampleBuffer, OAL_MAX_SAMPLES * numBuffers);
|
2013-02-19 12:18:13 +00:00
|
|
|
|
2013-06-23 07:46:45 +00:00
|
|
|
if (nSamples <= minSamples)
|
2013-06-09 07:43:27 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Remove the Buffer from the Queue. (uiBuffer contains the Buffer ID for the unqueued Buffer)
|
|
|
|
if (iBuffersFilled == 0)
|
2013-01-09 11:57:32 +00:00
|
|
|
{
|
2013-06-09 07:43:27 +00:00
|
|
|
alSourceUnqueueBuffers(uiSource, iBuffersProcessed, uiBufferTemp);
|
|
|
|
ALenum err = alGetError();
|
|
|
|
if (err != 0)
|
2013-01-11 03:03:09 +00:00
|
|
|
{
|
2013-06-09 07:43:27 +00:00
|
|
|
ERROR_LOG(AUDIO, "Error unqueuing buffers: %08x", err);
|
2013-01-11 03:03:09 +00:00
|
|
|
}
|
2013-06-09 07:43:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (surround_capable)
|
|
|
|
{
|
|
|
|
float dpl2[OAL_MAX_SAMPLES * OAL_MAX_BUFFERS * SURROUND_CHANNELS];
|
|
|
|
dpl2decode(sampleBuffer, nSamples, dpl2);
|
|
|
|
alBufferData(uiBufferTemp[iBuffersFilled], AL_FORMAT_51CHN32, dpl2, nSamples * FRAME_SURROUND_FLOAT, ulFrequency);
|
|
|
|
ALenum err = alGetError();
|
|
|
|
if (err == AL_INVALID_ENUM)
|
2013-01-11 03:03:09 +00:00
|
|
|
{
|
2013-06-09 07:43:27 +00:00
|
|
|
// 5.1 is not supported by the host, fallback to stereo
|
|
|
|
WARN_LOG(AUDIO, "Unable to set 5.1 surround mode. Updating OpenAL Soft might fix this issue.");
|
|
|
|
surround_capable = false;
|
|
|
|
}
|
|
|
|
else if (err != 0)
|
|
|
|
{
|
|
|
|
ERROR_LOG(AUDIO, "Error occurred while buffering data: %08x", err);
|
|
|
|
}
|
|
|
|
}
|
2013-01-11 03:03:09 +00:00
|
|
|
|
2013-06-09 07:43:27 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (float32_capable)
|
|
|
|
{
|
|
|
|
alBufferData(uiBufferTemp[iBuffersFilled], AL_FORMAT_STEREO_FLOAT32, sampleBuffer, nSamples * FRAME_STEREO_FLOAT, ulFrequency);
|
2013-01-11 03:03:09 +00:00
|
|
|
ALenum err = alGetError();
|
|
|
|
if (err == AL_INVALID_ENUM)
|
|
|
|
{
|
2013-06-09 07:43:27 +00:00
|
|
|
float32_capable = false;
|
2013-01-11 03:03:09 +00:00
|
|
|
}
|
|
|
|
else if (err != 0)
|
|
|
|
{
|
2013-06-09 07:43:27 +00:00
|
|
|
ERROR_LOG(AUDIO, "Error occurred while buffering float32 data: %08x", err);
|
2013-01-15 11:29:26 +00:00
|
|
|
}
|
2013-01-11 03:03:09 +00:00
|
|
|
}
|
|
|
|
|
2013-06-09 07:43:27 +00:00
|
|
|
else
|
2013-01-11 03:03:09 +00:00
|
|
|
{
|
2013-06-09 07:43:27 +00:00
|
|
|
// Convert the samples from float to short
|
|
|
|
short stereo[OAL_MAX_SAMPLES * STEREO_CHANNELS * OAL_MAX_BUFFERS];
|
|
|
|
for (u32 i = 0; i < nSamples * STEREO_CHANNELS; ++i)
|
|
|
|
stereo[i] = (short)((float)sampleBuffer[i] * (1 << 16));
|
|
|
|
|
|
|
|
alBufferData(uiBufferTemp[iBuffersFilled], AL_FORMAT_STEREO16, stereo, nSamples * FRAME_STEREO_SHORT, ulFrequency);
|
2013-01-11 03:03:09 +00:00
|
|
|
}
|
2013-06-09 07:43:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
alSourceQueueBuffers(uiSource, 1, &uiBufferTemp[iBuffersFilled]);
|
|
|
|
ALenum err = alGetError();
|
|
|
|
if (err != 0)
|
|
|
|
{
|
|
|
|
ERROR_LOG(AUDIO, "Error queuing buffers: %08x", err);
|
|
|
|
}
|
|
|
|
iBuffersFilled++;
|
2013-01-09 11:57:32 +00:00
|
|
|
|
2013-06-09 07:43:27 +00:00
|
|
|
if (iBuffersFilled == numBuffers)
|
|
|
|
{
|
|
|
|
alSourcePlay(uiSource);
|
|
|
|
err = alGetError();
|
|
|
|
if (err != 0)
|
2013-01-11 03:03:09 +00:00
|
|
|
{
|
2013-06-09 07:43:27 +00:00
|
|
|
ERROR_LOG(AUDIO, "Error occurred during playback: %08x", err);
|
2013-01-11 03:03:09 +00:00
|
|
|
}
|
2013-06-09 07:43:27 +00:00
|
|
|
}
|
2013-01-11 08:42:03 +00:00
|
|
|
|
2013-06-09 07:43:27 +00:00
|
|
|
alGetSourcei(uiSource, AL_SOURCE_STATE, &iState);
|
|
|
|
if (iState != AL_PLAYING)
|
|
|
|
{
|
|
|
|
// Buffer underrun occurred, resume playback
|
|
|
|
alSourcePlay(uiSource);
|
|
|
|
err = alGetError();
|
|
|
|
if (err != 0)
|
2013-01-11 08:42:03 +00:00
|
|
|
{
|
2013-06-09 07:43:27 +00:00
|
|
|
ERROR_LOG(AUDIO, "Error occurred resuming playback: %08x", err);
|
2013-01-11 08:42:03 +00:00
|
|
|
}
|
2013-01-09 11:57:32 +00:00
|
|
|
}
|
2009-12-20 02:23:26 +00:00
|
|
|
}
|
2013-01-07 04:37:08 +00:00
|
|
|
else
|
2009-12-20 02:23:26 +00:00
|
|
|
{
|
2013-01-07 04:37:08 +00:00
|
|
|
soundSyncEvent.Wait();
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //HAVE_OPENAL
|
|
|
|
|