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
|
|
|
|
2015-05-09 21:50:45 -06:00
|
|
|
#include <atomic>
|
2015-09-28 09:57:16 -06:00
|
|
|
#include <cstring>
|
2014-08-13 23:14:35 -06:00
|
|
|
#include <mutex>
|
2014-03-12 13:33:41 -06:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "AudioCommon/WaveFile.h"
|
2011-02-11 11:59:42 -07:00
|
|
|
|
2015-02-23 10:43:13 -07:00
|
|
|
// 16 bit Stereo
|
|
|
|
#define MAX_SAMPLES (1024 * 2) // 64ms
|
|
|
|
#define INDEX_MASK (MAX_SAMPLES * 2 - 1)
|
|
|
|
|
|
|
|
#define LOW_WATERMARK 1280 // 40 ms
|
|
|
|
#define MAX_FREQ_SHIFT 200 // per 32000 Hz
|
|
|
|
#define CONTROL_FACTOR 0.2f // in freq_shift per fifo size offset
|
|
|
|
#define CONTROL_AVG 32
|
|
|
|
|
2015-09-26 15:13:07 -06:00
|
|
|
class CMixer
|
|
|
|
{
|
2009-03-26 03:29:14 -06:00
|
|
|
public:
|
2015-09-26 15:13:07 -06:00
|
|
|
CMixer(unsigned int BackendSampleRate);
|
2010-07-23 17:51:34 -06:00
|
|
|
virtual ~CMixer() {}
|
|
|
|
|
2009-03-26 03:29:14 -06:00
|
|
|
// Called from audio threads
|
2015-02-23 10:43:13 -07:00
|
|
|
virtual 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
|
2015-02-23 10:43:13 -07:00
|
|
|
virtual void PushSamples(const short* samples, unsigned int num_samples);
|
|
|
|
virtual void PushStreamingSamples(const short* samples, unsigned int num_samples);
|
|
|
|
virtual void PushWiimoteSpeakerSamples(const short* samples, unsigned int num_samples, unsigned int sample_rate);
|
|
|
|
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
|
|
|
|
2009-03-26 03:29:14 -06:00
|
|
|
protected:
|
2015-02-23 10:43:13 -07:00
|
|
|
class MixerFifo {
|
2014-04-10 19:28:19 -06:00
|
|
|
public:
|
2015-02-23 10:43:13 -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
|
|
|
, m_indexW(0)
|
|
|
|
, m_indexR(0)
|
|
|
|
, m_LVolume(256)
|
|
|
|
, m_RVolume(256)
|
|
|
|
, m_numLeftI(0.0f)
|
|
|
|
, m_frac(0)
|
2014-04-10 19:28:19 -06:00
|
|
|
{
|
2015-02-23 10:43:13 -07:00
|
|
|
memset(m_buffer, 0, sizeof(m_buffer));
|
2014-04-10 19:28:19 -06:00
|
|
|
}
|
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:
|
|
|
|
CMixer *m_mixer;
|
|
|
|
unsigned m_input_sample_rate;
|
|
|
|
short m_buffer[MAX_SAMPLES * 2];
|
2015-05-09 21:50:45 -06:00
|
|
|
std::atomic<u32> m_indexW;
|
|
|
|
std::atomic<u32> m_indexR;
|
2015-02-23 10:43:13 -07:00
|
|
|
// Volume ranges from 0-256
|
2015-05-09 21:50:45 -06:00
|
|
|
std::atomic<s32> m_LVolume;
|
|
|
|
std::atomic<s32> m_RVolume;
|
2015-02-23 10:43:13 -07:00
|
|
|
float m_numLeftI;
|
|
|
|
u32 m_frac;
|
2014-04-10 19:28:19 -06:00
|
|
|
};
|
2015-02-23 10:43:13 -07:00
|
|
|
MixerFifo m_dma_mixer;
|
|
|
|
MixerFifo m_streaming_mixer;
|
|
|
|
MixerFifo m_wiimote_speaker_mixer;
|
|
|
|
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
|
|
|
|
2014-10-04 01:28:01 -06:00
|
|
|
bool m_log_dtk_audio;
|
|
|
|
bool m_log_dsp_audio;
|
2009-03-26 03:29:14 -06:00
|
|
|
|
2015-05-09 21:50:45 -06:00
|
|
|
std::atomic<float> m_speed; // Current rate of the emulation (1.0 = 100% speed)
|
2015-02-23 10:43:13 -07:00
|
|
|
};
|