2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2017-01-24 01:44:10 +00:00
|
|
|
#include <climits>
|
2015-09-28 15:57:16 +00:00
|
|
|
#include <cstring>
|
2014-08-14 05:14:35 +00:00
|
|
|
#include <thread>
|
|
|
|
|
2014-02-19 01:11:52 +00:00
|
|
|
#include "AudioCommon/OpenALStream.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "AudioCommon/aldlist.h"
|
2015-09-26 21:13:07 +00:00
|
|
|
#include "Common/Logging/Log.h"
|
2016-10-07 20:55:13 +00:00
|
|
|
#include "Common/MsgHandler.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "Common/Thread.h"
|
2014-09-09 04:24:49 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
#if defined HAVE_OPENAL && HAVE_OPENAL
|
|
|
|
|
2014-08-31 12:51:38 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#pragma comment(lib, "openal32.lib")
|
|
|
|
#endif
|
|
|
|
|
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()
|
|
|
|
{
|
2016-08-05 14:04:39 +00:00
|
|
|
m_run_thread.Set();
|
2016-06-24 08:43:46 +00:00
|
|
|
bool bReturn = false;
|
|
|
|
|
|
|
|
ALDeviceList pDeviceList;
|
|
|
|
if (pDeviceList.GetNumDevices())
|
|
|
|
{
|
|
|
|
char* defDevName = pDeviceList.GetDeviceName(pDeviceList.GetDefaultDevice());
|
|
|
|
|
2016-09-24 23:06:47 +00:00
|
|
|
INFO_LOG(AUDIO, "Found OpenAL device %s", defDevName);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
ALCdevice* pDevice = alcOpenDevice(defDevName);
|
|
|
|
if (pDevice)
|
|
|
|
{
|
|
|
|
ALCcontext* pContext = alcCreateContext(pDevice, nullptr);
|
|
|
|
if (pContext)
|
|
|
|
{
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
alcMakeContextCurrent(pContext);
|
|
|
|
thread = std::thread(&OpenALStream::SoundLoop, this);
|
|
|
|
bReturn = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
alcCloseDevice(pDevice);
|
|
|
|
PanicAlertT("OpenAL: can't create context for device %s", defDevName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PanicAlertT("OpenAL: can't open device %s", defDevName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PanicAlertT("OpenAL: can't find sound devices");
|
|
|
|
}
|
|
|
|
|
|
|
|
return bReturn;
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OpenALStream::Stop()
|
|
|
|
{
|
2016-08-05 14:04:39 +00:00
|
|
|
m_run_thread.Clear();
|
2016-06-24 08:43:46 +00:00
|
|
|
// kick the thread if it's waiting
|
|
|
|
soundSyncEvent.Set();
|
2009-12-18 19:52:04 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
thread.join();
|
2009-12-18 19:52:04 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
alSourceStop(uiSource);
|
|
|
|
alSourcei(uiSource, AL_BUFFER, 0);
|
2009-12-18 19:52:04 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Clean up buffers and sources
|
|
|
|
alDeleteSources(1, &uiSource);
|
|
|
|
uiSource = 0;
|
|
|
|
alDeleteBuffers(numBuffers, uiBuffers);
|
2009-12-18 19:52:04 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
ALCcontext* pContext = alcGetCurrentContext();
|
|
|
|
ALCdevice* pDevice = alcGetContextsDevice(pContext);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
alcMakeContextCurrent(nullptr);
|
|
|
|
alcDestroyContext(pContext);
|
|
|
|
alcCloseDevice(pDevice);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
2009-12-20 13:54:14 +00:00
|
|
|
void OpenALStream::SetVolume(int volume)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
fVolume = (float)volume / 100.0f;
|
2009-12-20 13:54:14 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
if (uiSource)
|
|
|
|
alSourcef(uiSource, AL_GAIN, fVolume);
|
2009-12-20 13:54:14 +00:00
|
|
|
}
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
void OpenALStream::Update()
|
|
|
|
{
|
2016-06-24 08:43:46 +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
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
m_muted = mute;
|
|
|
|
|
|
|
|
if (m_muted)
|
|
|
|
{
|
|
|
|
alSourceStop(uiSource);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
alSourcePlay(uiSource);
|
|
|
|
}
|
2009-11-07 20:01:39 +00:00
|
|
|
}
|
|
|
|
|
2016-10-05 00:57:36 +00:00
|
|
|
static ALenum CheckALError(const char* desc)
|
|
|
|
{
|
|
|
|
ALenum err = alGetError();
|
|
|
|
|
|
|
|
if (err != AL_NO_ERROR)
|
|
|
|
{
|
|
|
|
std::string type;
|
|
|
|
|
|
|
|
switch (err)
|
|
|
|
{
|
|
|
|
case AL_INVALID_NAME:
|
|
|
|
type = "AL_INVALID_NAME";
|
|
|
|
break;
|
|
|
|
case AL_INVALID_ENUM:
|
|
|
|
type = "AL_INVALID_ENUM";
|
|
|
|
break;
|
|
|
|
case AL_INVALID_VALUE:
|
|
|
|
type = "AL_INVALID_VALUE";
|
|
|
|
break;
|
|
|
|
case AL_INVALID_OPERATION:
|
|
|
|
type = "AL_INVALID_OPERATION";
|
|
|
|
break;
|
|
|
|
case AL_OUT_OF_MEMORY:
|
|
|
|
type = "AL_OUT_OF_MEMORY";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
type = "UNKNOWN_ERROR";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ERROR_LOG(AUDIO, "Error %s: %08x %s", desc, err, type.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
void OpenALStream::SoundLoop()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
Common::SetCurrentThreadName("Audio thread - openal");
|
2011-12-31 04:22:48 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
bool surround_capable = SConfig::GetInstance().bDPL2Decoder;
|
|
|
|
bool float32_capable = false;
|
2016-10-27 20:47:13 +00:00
|
|
|
bool fixed32_capable = false;
|
|
|
|
|
|
|
|
#if defined(__APPLE__)
|
2016-06-24 08:43:46 +00:00
|
|
|
surround_capable = false;
|
2013-06-09 07:43:27 +00:00
|
|
|
#endif
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
u32 ulFrequency = m_mixer->GetSampleRate();
|
|
|
|
numBuffers = SConfig::GetInstance().iLatency + 2; // OpenAL requires a minimum of two buffers
|
|
|
|
|
|
|
|
memset(uiBuffers, 0, numBuffers * sizeof(ALuint));
|
|
|
|
uiSource = 0;
|
|
|
|
|
2016-10-27 20:47:13 +00:00
|
|
|
if (alIsExtensionPresent("AL_EXT_float32"))
|
|
|
|
float32_capable = true;
|
|
|
|
|
|
|
|
// As there is no extension to check for 32-bit fixed point support
|
|
|
|
// and we know that only a X-Fi with hardware OpenAL supports it,
|
|
|
|
// we just check if one is being used.
|
2016-06-24 08:43:46 +00:00
|
|
|
if (strstr(alGetString(AL_RENDERER), "X-Fi"))
|
2016-10-27 20:47:13 +00:00
|
|
|
fixed32_capable = true;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-05 00:57:36 +00:00
|
|
|
// Clear error state before querying or else we get false positives.
|
|
|
|
ALenum err = alGetError();
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Generate some AL Buffers for streaming
|
|
|
|
alGenBuffers(numBuffers, (ALuint*)uiBuffers);
|
2016-10-05 00:57:36 +00:00
|
|
|
err = CheckALError("generating buffers");
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Generate a Source to playback the Buffers
|
|
|
|
alGenSources(1, &uiSource);
|
2016-10-05 00:57:36 +00:00
|
|
|
err = CheckALError("generating sources");
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Set the default sound volume as saved in the config file.
|
|
|
|
alSourcef(uiSource, AL_GAIN, fVolume);
|
|
|
|
|
|
|
|
// TODO: Error handling
|
|
|
|
// ALenum err = alGetError();
|
|
|
|
|
2016-10-02 03:55:40 +00:00
|
|
|
unsigned int nextBuffer = 0;
|
|
|
|
unsigned int numBuffersQueued = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
ALint iState = 0;
|
|
|
|
|
2016-08-05 14:04:39 +00:00
|
|
|
while (m_run_thread.IsSet())
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-10-02 03:55:40 +00:00
|
|
|
// Block until we have a free buffer
|
|
|
|
int numBuffersProcessed;
|
|
|
|
alGetSourcei(uiSource, AL_BUFFERS_PROCESSED, &numBuffersProcessed);
|
|
|
|
if (numBuffers == numBuffersQueued && !numBuffersProcessed)
|
|
|
|
{
|
|
|
|
soundSyncEvent.Wait();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the Buffer from the Queue.
|
|
|
|
if (numBuffersProcessed)
|
|
|
|
{
|
|
|
|
ALuint unqueuedBufferIds[OAL_MAX_BUFFERS];
|
|
|
|
alSourceUnqueueBuffers(uiSource, numBuffersProcessed, unqueuedBufferIds);
|
2016-10-05 00:57:36 +00:00
|
|
|
err = CheckALError("unqueuing buffers");
|
|
|
|
|
2016-10-02 03:55:40 +00:00
|
|
|
numBuffersQueued -= numBuffersProcessed;
|
|
|
|
}
|
|
|
|
|
2017-04-10 13:57:24 +00:00
|
|
|
unsigned int numSamples = OAL_MAX_SAMPLES;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-02 03:56:25 +00:00
|
|
|
if (surround_capable)
|
|
|
|
{
|
2017-04-24 01:05:21 +00:00
|
|
|
// DPL2 accepts 240 samples minimum (FWRDURATION)
|
|
|
|
unsigned int minSamples = 240;
|
|
|
|
|
2016-10-02 03:56:25 +00:00
|
|
|
float dpl2[OAL_MAX_SAMPLES * OAL_MAX_BUFFERS * SURROUND_CHANNELS];
|
2017-04-24 01:05:21 +00:00
|
|
|
numSamples = m_mixer->MixSurround(dpl2, numSamples);
|
|
|
|
|
|
|
|
if (numSamples < minSamples)
|
|
|
|
continue;
|
2016-10-02 03:56:25 +00:00
|
|
|
|
|
|
|
// zero-out the subwoofer channel - DPL2Decode generates a pretty
|
|
|
|
// good 5.0 but not a good 5.1 output. Sadly there is not a 5.0
|
|
|
|
// AL_FORMAT_50CHN32 to make this super-explicit.
|
|
|
|
// DPL2Decode output: LEFTFRONT, RIGHTFRONT, CENTREFRONT, (sub), LEFTREAR, RIGHTREAR
|
2017-04-10 13:57:24 +00:00
|
|
|
for (u32 i = 0; i < numSamples; ++i)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-10-02 03:56:25 +00:00
|
|
|
dpl2[i * SURROUND_CHANNELS + 3 /*sub/lfe*/] = 0.0f;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2016-10-02 03:56:25 +00:00
|
|
|
if (float32_capable)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-10-02 03:56:25 +00:00
|
|
|
alBufferData(uiBuffers[nextBuffer], AL_FORMAT_51CHN32, dpl2,
|
2017-04-10 13:57:24 +00:00
|
|
|
numSamples * FRAME_SURROUND_FLOAT, ulFrequency);
|
2016-10-02 03:56:25 +00:00
|
|
|
}
|
2016-10-27 20:47:13 +00:00
|
|
|
else if (fixed32_capable)
|
|
|
|
{
|
|
|
|
int surround_int32[OAL_MAX_SAMPLES * SURROUND_CHANNELS * OAL_MAX_BUFFERS];
|
|
|
|
|
2017-04-10 13:57:24 +00:00
|
|
|
for (u32 i = 0; i < numSamples * SURROUND_CHANNELS; ++i)
|
2016-10-27 20:47:13 +00:00
|
|
|
{
|
|
|
|
// For some reason the ffdshow's DPL2 decoder outputs samples bigger than 1.
|
|
|
|
// Most are close to 2.5 and some go up to 8. Hard clamping here, we need to
|
|
|
|
// fix the decoder or implement a limiter.
|
|
|
|
dpl2[i] = dpl2[i] * (INT64_C(1) << 31);
|
|
|
|
if (dpl2[i] > INT_MAX)
|
|
|
|
surround_int32[i] = INT_MAX;
|
|
|
|
else if (dpl2[i] < INT_MIN)
|
|
|
|
surround_int32[i] = INT_MIN;
|
|
|
|
else
|
|
|
|
surround_int32[i] = (int)dpl2[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
alBufferData(uiBuffers[nextBuffer], AL_FORMAT_51CHN32, surround_int32,
|
2017-04-10 13:57:24 +00:00
|
|
|
numSamples * FRAME_SURROUND_INT32, ulFrequency);
|
2016-10-27 20:47:13 +00:00
|
|
|
}
|
2016-10-02 03:56:25 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
short surround_short[OAL_MAX_SAMPLES * SURROUND_CHANNELS * OAL_MAX_BUFFERS];
|
2016-10-27 20:47:13 +00:00
|
|
|
|
2017-04-10 13:57:24 +00:00
|
|
|
for (u32 i = 0; i < numSamples * SURROUND_CHANNELS; ++i)
|
2016-10-27 20:47:13 +00:00
|
|
|
{
|
|
|
|
dpl2[i] = dpl2[i] * (1 << 15);
|
|
|
|
if (dpl2[i] > SHRT_MAX)
|
|
|
|
surround_short[i] = SHRT_MAX;
|
|
|
|
else if (dpl2[i] < SHRT_MIN)
|
|
|
|
surround_short[i] = SHRT_MIN;
|
|
|
|
else
|
|
|
|
surround_short[i] = (int)dpl2[i];
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-02 03:56:25 +00:00
|
|
|
alBufferData(uiBuffers[nextBuffer], AL_FORMAT_51CHN16, surround_short,
|
2017-04-10 13:57:24 +00:00
|
|
|
numSamples * FRAME_SURROUND_SHORT, ulFrequency);
|
2016-10-02 03:56:25 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-05 00:57:36 +00:00
|
|
|
err = CheckALError("buffering data");
|
2016-10-02 03:56:25 +00:00
|
|
|
if (err == AL_INVALID_ENUM)
|
|
|
|
{
|
|
|
|
// 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
|
|
|
|
{
|
2017-04-24 01:05:21 +00:00
|
|
|
numSamples = m_mixer->Mix(realtimeBuffer, numSamples);
|
|
|
|
|
|
|
|
// Convert the samples from short to float
|
|
|
|
for (u32 i = 0; i < numSamples * STEREO_CHANNELS; ++i)
|
|
|
|
sampleBuffer[i] = static_cast<float>(realtimeBuffer[i]) / (1 << 15);
|
|
|
|
|
|
|
|
if (!numSamples)
|
|
|
|
continue;
|
|
|
|
|
2016-10-02 03:56:25 +00:00
|
|
|
if (float32_capable)
|
|
|
|
{
|
|
|
|
alBufferData(uiBuffers[nextBuffer], AL_FORMAT_STEREO_FLOAT32, sampleBuffer,
|
2017-04-10 13:57:24 +00:00
|
|
|
numSamples * FRAME_STEREO_FLOAT, ulFrequency);
|
2016-10-05 00:57:36 +00:00
|
|
|
|
|
|
|
err = CheckALError("buffering float32 data");
|
2016-06-24 08:43:46 +00:00
|
|
|
if (err == AL_INVALID_ENUM)
|
|
|
|
{
|
2016-10-02 03:56:25 +00:00
|
|
|
float32_capable = false;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-27 20:47:13 +00:00
|
|
|
else if (fixed32_capable)
|
|
|
|
{
|
|
|
|
// Clamping is not necessary here, samples are always between (-1,1)
|
|
|
|
int stereo_int32[OAL_MAX_SAMPLES * STEREO_CHANNELS * OAL_MAX_BUFFERS];
|
2017-04-10 13:57:24 +00:00
|
|
|
for (u32 i = 0; i < numSamples * STEREO_CHANNELS; ++i)
|
2016-10-27 20:47:13 +00:00
|
|
|
stereo_int32[i] = (int)((float)sampleBuffer[i] * (INT64_C(1) << 31));
|
|
|
|
|
|
|
|
alBufferData(uiBuffers[nextBuffer], AL_FORMAT_STEREO32, stereo_int32,
|
2017-04-10 13:57:24 +00:00
|
|
|
numSamples * FRAME_STEREO_INT32, ulFrequency);
|
2016-10-27 20:47:13 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
else
|
|
|
|
{
|
2016-10-02 03:56:25 +00:00
|
|
|
// Convert the samples from float to short
|
|
|
|
short stereo[OAL_MAX_SAMPLES * STEREO_CHANNELS * OAL_MAX_BUFFERS];
|
2017-04-10 13:57:24 +00:00
|
|
|
for (u32 i = 0; i < numSamples * STEREO_CHANNELS; ++i)
|
2016-10-02 03:56:25 +00:00
|
|
|
stereo[i] = (short)((float)sampleBuffer[i] * (1 << 15));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-02 03:56:25 +00:00
|
|
|
alBufferData(uiBuffers[nextBuffer], AL_FORMAT_STEREO16, stereo,
|
2017-04-10 13:57:24 +00:00
|
|
|
numSamples * FRAME_STEREO_SHORT, ulFrequency);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2016-10-02 03:56:25 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-02 03:56:25 +00:00
|
|
|
alSourceQueueBuffers(uiSource, 1, &uiBuffers[nextBuffer]);
|
2016-10-05 00:57:36 +00:00
|
|
|
err = CheckALError("queuing buffers");
|
|
|
|
|
2016-10-02 03:56:25 +00:00
|
|
|
numBuffersQueued++;
|
|
|
|
nextBuffer = (nextBuffer + 1) % numBuffers;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-02 03:56:25 +00:00
|
|
|
alGetSourcei(uiSource, AL_SOURCE_STATE, &iState);
|
|
|
|
if (iState != AL_PLAYING)
|
|
|
|
{
|
|
|
|
// Buffer underrun occurred, resume playback
|
|
|
|
alSourcePlay(uiSource);
|
2016-10-05 00:57:36 +00:00
|
|
|
err = CheckALError("occurred resuming playback");
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
#endif // HAVE_OPENAL
|