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