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-01-17 14:28:09 +00:00
|
|
|
|
2015-09-28 15:57:16 +00:00
|
|
|
#include <cstring>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/AudioCommon.h"
|
|
|
|
#include "AudioCommon/Mixer.h"
|
|
|
|
#include "Common/CPUDetect.h"
|
2014-04-11 01:28:19 +00:00
|
|
|
#include "Common/MathUtil.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
2014-02-16 22:13:01 +00:00
|
|
|
#include "Core/Core.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/HW/AudioInterface.h"
|
2011-01-28 18:39:30 +00:00
|
|
|
|
|
|
|
// UGLINESS
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/PowerPC/PowerPC.h"
|
2011-01-28 18:39:30 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
#if _M_SSE >= 0x301 && !(defined __GNUC__ && !defined __SSSE3__)
|
|
|
|
#include <tmmintrin.h>
|
2011-01-12 09:34:53 +00:00
|
|
|
#endif
|
|
|
|
|
2015-09-26 21:13:07 +00:00
|
|
|
CMixer::CMixer(unsigned int BackendSampleRate)
|
|
|
|
: m_dma_mixer(this, 32000)
|
|
|
|
, m_streaming_mixer(this, 48000)
|
|
|
|
, m_wiimote_speaker_mixer(this, 3000)
|
|
|
|
, m_sampleRate(BackendSampleRate)
|
|
|
|
, m_log_dtk_audio(false)
|
|
|
|
, m_log_dsp_audio(false)
|
|
|
|
, m_speed(0)
|
|
|
|
{
|
|
|
|
INFO_LOG(AUDIO_INTERFACE, "Mixer is initialized");
|
|
|
|
}
|
|
|
|
|
2016-01-14 05:58:01 +00:00
|
|
|
CMixer::~CMixer()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
// Executed from sound stream thread
|
|
|
|
unsigned int CMixer::MixerFifo::Mix(short* samples, unsigned int numSamples, bool consider_framelimit)
|
2015-01-30 08:29:49 +00:00
|
|
|
{
|
2015-02-23 17:43:13 +00:00
|
|
|
unsigned int currentSample = 0;
|
2015-01-30 08:29:49 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
// Cache access in non-volatile variable
|
|
|
|
// This is the only function changing the read value, so it's safe to
|
|
|
|
// cache it locally although it's written here.
|
|
|
|
// The writing pointer will be modified outside, but it will only increase,
|
|
|
|
// so we will just ignore new written data while interpolating.
|
|
|
|
// Without this cache, the compiler wouldn't be allowed to optimize the
|
|
|
|
// interpolation loop.
|
2015-05-10 03:50:45 +00:00
|
|
|
u32 indexR = m_indexR.load();
|
|
|
|
u32 indexW = m_indexW.load();
|
2015-02-23 17:43:13 +00:00
|
|
|
|
2015-10-25 13:04:42 +00:00
|
|
|
int low_waterwark = m_input_sample_rate * SConfig::GetInstance().iTimingVariance / 1000;
|
|
|
|
low_waterwark = std::min(low_waterwark, MAX_SAMPLES / 2);
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
float numLeft = (float)(((indexW - indexR) & INDEX_MASK) / 2);
|
|
|
|
m_numLeftI = (numLeft + m_numLeftI*(CONTROL_AVG-1)) / CONTROL_AVG;
|
2015-10-25 13:04:42 +00:00
|
|
|
float offset = (m_numLeftI - low_waterwark) * CONTROL_FACTOR;
|
2015-02-23 17:43:13 +00:00
|
|
|
if (offset > MAX_FREQ_SHIFT) offset = MAX_FREQ_SHIFT;
|
|
|
|
if (offset < -MAX_FREQ_SHIFT) offset = -MAX_FREQ_SHIFT;
|
|
|
|
|
|
|
|
//render numleft sample pairs to samples[]
|
|
|
|
//advance indexR with sample position
|
|
|
|
//remember fractional offset
|
2015-01-30 08:29:49 +00:00
|
|
|
|
2015-12-15 23:10:47 +00:00
|
|
|
float emulationspeed = SConfig::GetInstance().m_EmulationSpeed;
|
2014-04-11 01:28:19 +00:00
|
|
|
float aid_sample_rate = m_input_sample_rate + offset;
|
2015-12-15 23:10:47 +00:00
|
|
|
if (consider_framelimit && emulationspeed > 0.0f)
|
2014-02-11 13:53:53 +00:00
|
|
|
{
|
2015-12-15 23:10:47 +00:00
|
|
|
aid_sample_rate = aid_sample_rate * emulationspeed;
|
2014-02-11 13:53:53 +00:00
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
const u32 ratio = (u32)(65536.0f * aid_sample_rate / (float)m_mixer->m_sampleRate);
|
2014-06-26 23:15:18 +00:00
|
|
|
|
2015-05-10 03:50:45 +00:00
|
|
|
s32 lvolume = m_LVolume.load();
|
|
|
|
s32 rvolume = m_RVolume.load();
|
2015-01-30 08:29:49 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
// TODO: consider a higher-quality resampling algorithm.
|
|
|
|
for (; currentSample < numSamples * 2 && ((indexW-indexR) & INDEX_MASK) > 2; currentSample += 2)
|
|
|
|
{
|
|
|
|
u32 indexR2 = indexR + 2; //next sample
|
|
|
|
|
|
|
|
s16 l1 = Common::swap16(m_buffer[indexR & INDEX_MASK]); //current
|
|
|
|
s16 l2 = Common::swap16(m_buffer[indexR2 & INDEX_MASK]); //next
|
|
|
|
int sampleL = ((l1 << 16) + (l2 - l1) * (u16)m_frac) >> 16;
|
|
|
|
sampleL = (sampleL * lvolume) >> 8;
|
|
|
|
sampleL += samples[currentSample + 1];
|
2015-09-12 03:43:17 +00:00
|
|
|
samples[currentSample + 1] = MathUtil::Clamp(sampleL, -32767, 32767);
|
2015-02-23 17:43:13 +00:00
|
|
|
|
|
|
|
s16 r1 = Common::swap16(m_buffer[(indexR + 1) & INDEX_MASK]); //current
|
|
|
|
s16 r2 = Common::swap16(m_buffer[(indexR2 + 1) & INDEX_MASK]); //next
|
|
|
|
int sampleR = ((r1 << 16) + (r2 - r1) * (u16)m_frac) >> 16;
|
|
|
|
sampleR = (sampleR * rvolume) >> 8;
|
|
|
|
sampleR += samples[currentSample];
|
2015-09-12 03:43:17 +00:00
|
|
|
samples[currentSample] = MathUtil::Clamp(sampleR, -32767, 32767);
|
2015-02-23 17:43:13 +00:00
|
|
|
|
|
|
|
m_frac += ratio;
|
|
|
|
indexR += 2 * (u16)(m_frac >> 16);
|
|
|
|
m_frac &= 0xffff;
|
2009-12-23 15:34:14 +00:00
|
|
|
}
|
2009-12-22 07:26:30 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
// Padding
|
|
|
|
short s[2];
|
|
|
|
s[0] = Common::swap16(m_buffer[(indexR - 1) & INDEX_MASK]);
|
|
|
|
s[1] = Common::swap16(m_buffer[(indexR - 2) & INDEX_MASK]);
|
|
|
|
s[0] = (s[0] * rvolume) >> 8;
|
|
|
|
s[1] = (s[1] * lvolume) >> 8;
|
|
|
|
for (; currentSample < numSamples * 2; currentSample += 2)
|
2011-03-12 22:02:46 +00:00
|
|
|
{
|
2015-09-12 03:43:17 +00:00
|
|
|
int sampleR = MathUtil::Clamp(s[0] + samples[currentSample + 0], -32767, 32767);
|
|
|
|
int sampleL = MathUtil::Clamp(s[1] + samples[currentSample + 1], -32767, 32767);
|
|
|
|
|
|
|
|
samples[currentSample + 0] = sampleR;
|
2015-02-23 17:43:13 +00:00
|
|
|
samples[currentSample + 1] = sampleL;
|
2011-03-12 22:02:46 +00:00
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
// Flush cached variable
|
2015-05-10 03:50:45 +00:00
|
|
|
m_indexR.store(indexR);
|
2009-12-23 15:34:14 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
return numSamples;
|
2009-12-23 15:34:14 +00:00
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
unsigned int CMixer::Mix(short* samples, unsigned int num_samples, bool consider_framelimit)
|
2014-04-11 01:28:19 +00:00
|
|
|
{
|
|
|
|
if (!samples)
|
|
|
|
return 0;
|
2009-12-23 15:34:14 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
memset(samples, 0, num_samples * 2 * sizeof(short));
|
2014-04-11 01:28:19 +00:00
|
|
|
|
2014-07-07 03:30:06 +00:00
|
|
|
if (PowerPC::GetState() != PowerPC::CPU_RUNNING)
|
2014-04-11 01:28:19 +00:00
|
|
|
{
|
|
|
|
// Silence
|
|
|
|
return num_samples;
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
m_dma_mixer.Mix(samples, num_samples, consider_framelimit);
|
|
|
|
m_streaming_mixer.Mix(samples, num_samples, consider_framelimit);
|
|
|
|
m_wiimote_speaker_mixer.Mix(samples, num_samples, consider_framelimit);
|
2014-04-11 01:28:19 +00:00
|
|
|
return num_samples;
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::MixerFifo::PushSamples(const short *samples, unsigned int num_samples)
|
2009-12-23 15:34:14 +00:00
|
|
|
{
|
2013-07-11 19:22:38 +00:00
|
|
|
// Cache access in non-volatile variable
|
|
|
|
// indexR isn't allowed to cache in the audio throttling loop as it
|
|
|
|
// needs to get updates to not deadlock.
|
2015-05-10 03:50:45 +00:00
|
|
|
u32 indexW = m_indexW.load();
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2009-12-23 15:34:14 +00:00
|
|
|
// Check if we have enough free space
|
2013-07-11 19:22:38 +00:00
|
|
|
// indexW == m_indexR results in empty buffer, so indexR must always be smaller than indexW
|
2015-05-10 03:50:45 +00:00
|
|
|
if (num_samples * 2 + ((indexW - m_indexR.load()) & INDEX_MASK) >= MAX_SAMPLES * 2)
|
2009-12-23 15:34:14 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// AyuanX: Actual re-sampling work has been moved to sound thread
|
2009-12-25 11:59:04 +00:00
|
|
|
// to alleviate the workload on main thread
|
2015-02-23 17:43:13 +00:00
|
|
|
// and we simply store raw data here to make fast mem copy
|
|
|
|
int over_bytes = num_samples * 4 - (MAX_SAMPLES * 2 - (indexW & INDEX_MASK)) * sizeof(short);
|
|
|
|
if (over_bytes > 0)
|
|
|
|
{
|
|
|
|
memcpy(&m_buffer[indexW & INDEX_MASK], samples, num_samples * 4 - over_bytes);
|
|
|
|
memcpy(&m_buffer[0], samples + (num_samples * 4 - over_bytes) / sizeof(short), over_bytes);
|
|
|
|
}
|
|
|
|
else
|
2009-12-23 15:34:14 +00:00
|
|
|
{
|
2015-02-23 17:43:13 +00:00
|
|
|
memcpy(&m_buffer[indexW & INDEX_MASK], samples, num_samples * 4);
|
2009-12-23 15:34:14 +00:00
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2015-05-10 03:50:45 +00:00
|
|
|
m_indexW.fetch_add(num_samples * 2);
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
2009-12-20 02:23:26 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::PushSamples(const short *samples, unsigned int num_samples)
|
2014-04-11 01:28:19 +00:00
|
|
|
{
|
|
|
|
m_dma_mixer.PushSamples(samples, num_samples);
|
2014-10-04 07:28:01 +00:00
|
|
|
if (m_log_dsp_audio)
|
2015-06-21 01:48:50 +00:00
|
|
|
m_wave_writer_dsp.AddStereoSamplesBE(samples, num_samples);
|
2014-04-11 01:28:19 +00:00
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::PushStreamingSamples(const short *samples, unsigned int num_samples)
|
2014-04-11 01:28:19 +00:00
|
|
|
{
|
|
|
|
m_streaming_mixer.PushSamples(samples, num_samples);
|
2014-10-04 07:28:01 +00:00
|
|
|
if (m_log_dtk_audio)
|
2015-06-21 01:48:50 +00:00
|
|
|
m_wave_writer_dtk.AddStereoSamplesBE(samples, num_samples);
|
2014-04-11 01:28:19 +00:00
|
|
|
}
|
2014-06-26 23:15:18 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::PushWiimoteSpeakerSamples(const short *samples, unsigned int num_samples, unsigned int sample_rate)
|
2014-09-05 12:32:48 +00:00
|
|
|
{
|
2015-02-23 17:43:13 +00:00
|
|
|
short samples_stereo[MAX_SAMPLES * 2];
|
2014-09-05 12:32:48 +00:00
|
|
|
|
|
|
|
if (num_samples < MAX_SAMPLES)
|
|
|
|
{
|
|
|
|
m_wiimote_speaker_mixer.SetInputSampleRate(sample_rate);
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
for (unsigned int i = 0; i < num_samples; ++i)
|
2014-09-05 12:32:48 +00:00
|
|
|
{
|
2014-09-05 15:23:54 +00:00
|
|
|
samples_stereo[i * 2] = Common::swap16(samples[i]);
|
|
|
|
samples_stereo[i * 2 + 1] = Common::swap16(samples[i]);
|
2014-09-05 12:32:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_wiimote_speaker_mixer.PushSamples(samples_stereo, num_samples);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::SetDMAInputSampleRate(unsigned int rate)
|
2014-07-24 03:20:19 +00:00
|
|
|
{
|
|
|
|
m_dma_mixer.SetInputSampleRate(rate);
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::SetStreamInputSampleRate(unsigned int rate)
|
2014-07-24 03:20:19 +00:00
|
|
|
{
|
|
|
|
m_streaming_mixer.SetInputSampleRate(rate);
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::SetStreamingVolume(unsigned int lvolume, unsigned int rvolume)
|
2014-06-26 23:15:18 +00:00
|
|
|
{
|
|
|
|
m_streaming_mixer.SetVolume(lvolume, rvolume);
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::SetWiimoteSpeakerVolume(unsigned int lvolume, unsigned int rvolume)
|
2014-09-05 12:32:48 +00:00
|
|
|
{
|
|
|
|
m_wiimote_speaker_mixer.SetVolume(lvolume, rvolume);
|
|
|
|
}
|
|
|
|
|
2015-06-21 01:46:18 +00:00
|
|
|
void CMixer::StartLogDTKAudio(const std::string& filename)
|
|
|
|
{
|
|
|
|
if (!m_log_dtk_audio)
|
|
|
|
{
|
|
|
|
m_log_dtk_audio = true;
|
2015-06-21 01:48:50 +00:00
|
|
|
m_wave_writer_dtk.Start(filename, 48000);
|
|
|
|
m_wave_writer_dtk.SetSkipSilence(false);
|
2015-08-10 01:36:00 +00:00
|
|
|
NOTICE_LOG(AUDIO, "Starting DTK Audio logging");
|
2015-06-21 01:46:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-10 01:36:00 +00:00
|
|
|
WARN_LOG(AUDIO, "DTK Audio logging has already been started");
|
2015-06-21 01:46:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMixer::StopLogDTKAudio()
|
|
|
|
{
|
|
|
|
if (m_log_dtk_audio)
|
|
|
|
{
|
|
|
|
m_log_dtk_audio = false;
|
2015-06-21 01:48:50 +00:00
|
|
|
m_wave_writer_dtk.Stop();
|
2015-08-10 01:36:00 +00:00
|
|
|
NOTICE_LOG(AUDIO, "Stopping DTK Audio logging");
|
2015-06-21 01:46:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-10 01:36:00 +00:00
|
|
|
WARN_LOG(AUDIO, "DTK Audio logging has already been stopped");
|
2015-06-21 01:46:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMixer::StartLogDSPAudio(const std::string& filename)
|
|
|
|
{
|
|
|
|
if (!m_log_dsp_audio)
|
|
|
|
{
|
|
|
|
m_log_dsp_audio = true;
|
2015-06-21 01:48:50 +00:00
|
|
|
m_wave_writer_dsp.Start(filename, 32000);
|
|
|
|
m_wave_writer_dsp.SetSkipSilence(false);
|
2015-08-10 01:36:00 +00:00
|
|
|
NOTICE_LOG(AUDIO, "Starting DSP Audio logging");
|
2015-06-21 01:46:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-10 01:36:00 +00:00
|
|
|
WARN_LOG(AUDIO, "DSP Audio logging has already been started");
|
2015-06-21 01:46:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMixer::StopLogDSPAudio()
|
|
|
|
{
|
|
|
|
if (m_log_dsp_audio)
|
|
|
|
{
|
|
|
|
m_log_dsp_audio = false;
|
2015-06-21 01:48:50 +00:00
|
|
|
m_wave_writer_dsp.Stop();
|
2015-08-10 01:36:00 +00:00
|
|
|
NOTICE_LOG(AUDIO, "Stopping DSP Audio logging");
|
2015-06-21 01:46:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-10 01:36:00 +00:00
|
|
|
WARN_LOG(AUDIO, "DSP Audio logging has already been stopped");
|
2015-06-21 01:46:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::MixerFifo::SetInputSampleRate(unsigned int rate)
|
2014-07-24 03:20:19 +00:00
|
|
|
{
|
|
|
|
m_input_sample_rate = rate;
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void CMixer::MixerFifo::SetVolume(unsigned int lvolume, unsigned int rvolume)
|
2014-06-26 23:15:18 +00:00
|
|
|
{
|
2015-05-10 03:50:45 +00:00
|
|
|
m_LVolume.store(lvolume + (lvolume >> 7));
|
|
|
|
m_RVolume.store(rvolume + (rvolume >> 7));
|
2014-06-26 23:15:18 +00:00
|
|
|
}
|