2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-03-26 03:29:14 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-03-26 03:29:14 -06:00
|
|
|
|
2016-01-13 23:19:25 -07:00
|
|
|
#include <array>
|
2015-05-09 21:50:45 -06:00
|
|
|
#include <atomic>
|
2014-03-12 13:33:41 -06:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "AudioCommon/WaveFile.h"
|
2016-01-13 23:19:25 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2011-02-11 11:59:42 -07:00
|
|
|
|
2015-02-23 10:43:13 -07:00
|
|
|
// 16 bit Stereo
|
2015-10-25 07:04:42 -06:00
|
|
|
#define MAX_SAMPLES (1024 * 4) // 128 ms
|
2015-02-23 10:43:13 -07:00
|
|
|
#define INDEX_MASK (MAX_SAMPLES * 2 - 1)
|
|
|
|
|
|
|
|
#define MAX_FREQ_SHIFT 200 // per 32000 Hz
|
|
|
|
#define CONTROL_FACTOR 0.2f // in freq_shift per fifo size offset
|
|
|
|
#define CONTROL_AVG 32
|
|
|
|
|
2016-01-13 22:58:01 -07:00
|
|
|
class CMixer final
|
2015-09-26 15:13:07 -06:00
|
|
|
{
|
2009-03-26 03:29:14 -06:00
|
|
|
public:
|
2016-01-13 22:58:01 -07:00
|
|
|
explicit CMixer(unsigned int BackendSampleRate);
|
|
|
|
~CMixer();
|
2010-07-23 17:51:34 -06:00
|
|
|
|
2009-03-26 03:29:14 -06:00
|
|
|
// Called from audio threads
|
2016-01-13 22:58:01 -07:00
|
|
|
unsigned int Mix(short* samples, unsigned int numSamples, bool consider_framelimit = true);
|
2009-12-19 19:23:26 -07:00
|
|
|
|
2009-03-26 03:29:14 -06:00
|
|
|
// Called from main thread
|
2016-01-13 22:58:01 -07:00
|
|
|
void PushSamples(const short* samples, unsigned int num_samples);
|
|
|
|
void PushStreamingSamples(const short* samples, unsigned int num_samples);
|
|
|
|
void PushWiimoteSpeakerSamples(const short* samples, unsigned int num_samples, unsigned int sample_rate);
|
2015-02-23 10:43:13 -07:00
|
|
|
unsigned int GetSampleRate() const { return m_sampleRate; }
|
2014-07-23 21:20:19 -06:00
|
|
|
|
2015-02-23 10:43:13 -07:00
|
|
|
void SetDMAInputSampleRate(unsigned int rate);
|
|
|
|
void SetStreamInputSampleRate(unsigned int rate);
|
|
|
|
void SetStreamingVolume(unsigned int lvolume, unsigned int rvolume);
|
|
|
|
void SetWiimoteSpeakerVolume(unsigned int lvolume, unsigned int rvolume);
|
2009-06-12 08:40:50 -06:00
|
|
|
|
2015-06-20 19:46:18 -06:00
|
|
|
void StartLogDTKAudio(const std::string& filename);
|
|
|
|
void StopLogDTKAudio();
|
2014-10-04 01:28:01 -06:00
|
|
|
|
2015-06-20 19:46:18 -06:00
|
|
|
void StartLogDSPAudio(const std::string& filename);
|
|
|
|
void StopLogDSPAudio();
|
2011-02-11 11:59:42 -07:00
|
|
|
|
2015-05-09 21:50:45 -06:00
|
|
|
float GetCurrentSpeed() const { return m_speed.load(); }
|
|
|
|
void UpdateSpeed(float val) { m_speed.store(val); }
|
2013-01-09 04:57:32 -07:00
|
|
|
|
2016-01-13 22:58:01 -07:00
|
|
|
private:
|
|
|
|
class MixerFifo final
|
|
|
|
{
|
2014-04-10 19:28:19 -06:00
|
|
|
public:
|
2016-01-13 23:19:25 -07:00
|
|
|
MixerFifo(CMixer* mixer, unsigned sample_rate)
|
2014-04-10 19:28:19 -06:00
|
|
|
: m_mixer(mixer)
|
|
|
|
, m_input_sample_rate(sample_rate)
|
|
|
|
{
|
|
|
|
}
|
2015-02-23 10:43:13 -07:00
|
|
|
void PushSamples(const short* samples, unsigned int num_samples);
|
|
|
|
unsigned int Mix(short* samples, unsigned int numSamples, bool consider_framelimit = true);
|
|
|
|
void SetInputSampleRate(unsigned int rate);
|
|
|
|
void SetVolume(unsigned int lvolume, unsigned int rvolume);
|
|
|
|
private:
|
2016-01-13 23:19:25 -07:00
|
|
|
CMixer* m_mixer;
|
2015-02-23 10:43:13 -07:00
|
|
|
unsigned m_input_sample_rate;
|
2016-01-13 23:19:25 -07:00
|
|
|
std::array<short, MAX_SAMPLES * 2> m_buffer{};
|
|
|
|
std::atomic<u32> m_indexW{0};
|
|
|
|
std::atomic<u32> m_indexR{0};
|
2015-02-23 10:43:13 -07:00
|
|
|
// Volume ranges from 0-256
|
2016-01-13 23:19:25 -07:00
|
|
|
std::atomic<s32> m_LVolume{256};
|
|
|
|
std::atomic<s32> m_RVolume{256};
|
|
|
|
float m_numLeftI = 0.0f;
|
|
|
|
u32 m_frac = 0;
|
2014-04-10 19:28:19 -06:00
|
|
|
};
|
2016-01-13 23:19:25 -07:00
|
|
|
MixerFifo m_dma_mixer{this, 32000};
|
|
|
|
MixerFifo m_streaming_mixer{this, 48000};
|
|
|
|
MixerFifo m_wiimote_speaker_mixer{this, 3000};
|
2015-02-23 10:43:13 -07:00
|
|
|
unsigned int m_sampleRate;
|
2011-02-11 11:59:42 -07:00
|
|
|
|
2015-06-20 19:48:50 -06:00
|
|
|
WaveFileWriter m_wave_writer_dtk;
|
|
|
|
WaveFileWriter m_wave_writer_dsp;
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2016-01-13 23:19:25 -07:00
|
|
|
bool m_log_dtk_audio = false;
|
|
|
|
bool m_log_dsp_audio = false;
|
2009-03-26 03:29:14 -06:00
|
|
|
|
2016-01-13 23:19:25 -07:00
|
|
|
// Current rate of emulation (1.0 = 100% speed)
|
|
|
|
std::atomic<float> m_speed{0.0f};
|
2015-02-23 10:43:13 -07:00
|
|
|
};
|