2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-03-26 09:29:14 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-03-26 09:29:14 +00:00
|
|
|
|
2016-01-14 06:19:25 +00:00
|
|
|
#include <array>
|
2015-05-10 03:50:45 +00:00
|
|
|
#include <atomic>
|
2014-03-12 19:33:41 +00:00
|
|
|
|
2017-04-24 02:08:33 +00:00
|
|
|
#include "AudioCommon/AudioStretcher.h"
|
2017-08-09 19:57:26 +00:00
|
|
|
#include "AudioCommon/SurroundDecoder.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/WaveFile.h"
|
2016-01-14 06:19:25 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2023-08-16 19:37:12 +00:00
|
|
|
#include "Common/Config/Config.h"
|
2011-02-11 18:59:42 +00:00
|
|
|
|
2017-11-06 08:15:05 +00:00
|
|
|
class PointerWrap;
|
|
|
|
|
2017-06-26 21:41:12 +00:00
|
|
|
class Mixer final
|
2015-09-26 21:13:07 +00:00
|
|
|
{
|
2009-03-26 09:29:14 +00:00
|
|
|
public:
|
2017-06-26 21:41:12 +00:00
|
|
|
explicit Mixer(unsigned int BackendSampleRate);
|
|
|
|
~Mixer();
|
2010-07-23 23:51:34 +00:00
|
|
|
|
2017-11-06 08:15:05 +00:00
|
|
|
void DoState(PointerWrap& p);
|
|
|
|
|
2009-03-26 09:29:14 +00:00
|
|
|
// Called from audio threads
|
2017-04-10 16:56:24 +00:00
|
|
|
unsigned int Mix(short* samples, unsigned int numSamples);
|
2017-04-24 01:05:21 +00:00
|
|
|
unsigned int MixSurround(float* samples, unsigned int num_samples);
|
2009-12-20 02:23:26 +00:00
|
|
|
|
2009-03-26 09:29:14 +00:00
|
|
|
// Called from main thread
|
2016-01-14 05:58:01 +00: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,
|
2022-07-03 22:07:06 +00:00
|
|
|
unsigned int sample_rate_divisor);
|
2023-03-05 06:19:00 +00:00
|
|
|
void PushSkylanderPortalSamples(const u8* samples, unsigned int num_samples);
|
2021-07-04 10:44:56 +00:00
|
|
|
void PushGBASamples(int device_number, const short* samples, unsigned int num_samples);
|
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
unsigned int GetSampleRate() const { return m_sampleRate; }
|
2021-07-04 10:44:56 +00:00
|
|
|
|
2022-07-03 22:07:06 +00:00
|
|
|
void SetDMAInputSampleRateDivisor(unsigned int rate_divisor);
|
|
|
|
void SetStreamInputSampleRateDivisor(unsigned int rate_divisor);
|
|
|
|
void SetGBAInputSampleRateDivisors(int device_number, unsigned int rate_divisor);
|
2021-07-04 10:44:56 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void SetStreamingVolume(unsigned int lvolume, unsigned int rvolume);
|
|
|
|
void SetWiimoteSpeakerVolume(unsigned int lvolume, unsigned int rvolume);
|
2021-07-04 10:44:56 +00:00
|
|
|
void SetGBAVolume(int device_number, unsigned int lvolume, unsigned int rvolume);
|
2014-07-24 03:20:19 +00:00
|
|
|
|
2015-02-23 17:43:13 +00:00
|
|
|
void StartLogDTKAudio(const std::string& filename);
|
|
|
|
void StopLogDTKAudio();
|
2009-06-12 14:40:50 +00:00
|
|
|
|
2015-06-21 01:46:18 +00:00
|
|
|
void StartLogDSPAudio(const std::string& filename);
|
|
|
|
void StopLogDSPAudio();
|
2013-01-09 11:57:32 +00:00
|
|
|
|
2022-07-03 22:07:06 +00:00
|
|
|
// 54000000 doesn't work here as it doesn't evenly divide with 32000, but 108000000 does
|
|
|
|
static constexpr u64 FIXED_SAMPLE_RATE_DIVIDEND = 54000000 * 2;
|
|
|
|
|
2016-01-14 05:58:01 +00:00
|
|
|
private:
|
2016-01-14 08:00:47 +00:00
|
|
|
static constexpr u32 MAX_SAMPLES = 1024 * 4; // 128 ms
|
|
|
|
static constexpr u32 INDEX_MASK = MAX_SAMPLES * 2 - 1;
|
|
|
|
static constexpr int MAX_FREQ_SHIFT = 200; // Per 32000 Hz
|
|
|
|
static constexpr float CONTROL_FACTOR = 0.2f;
|
|
|
|
static constexpr u32 CONTROL_AVG = 32; // In freq_shift per FIFO size offset
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-08-09 19:57:26 +00:00
|
|
|
const unsigned int SURROUND_CHANNELS = 6;
|
|
|
|
|
2016-01-14 05:58:01 +00:00
|
|
|
class MixerFifo final
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-07-03 22:07:06 +00:00
|
|
|
MixerFifo(Mixer* mixer, unsigned sample_rate_divisor, bool little_endian)
|
|
|
|
: m_mixer(mixer), m_input_sample_rate_divisor(sample_rate_divisor),
|
|
|
|
m_little_endian(little_endian)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
}
|
2017-11-06 08:15:05 +00:00
|
|
|
void DoState(PointerWrap& p);
|
2015-02-23 17:43:13 +00:00
|
|
|
void PushSamples(const short* samples, unsigned int num_samples);
|
2022-01-06 15:43:43 +00:00
|
|
|
unsigned int Mix(short* samples, unsigned int numSamples, bool consider_framelimit,
|
|
|
|
float emulationspeed, int timing_variance);
|
2022-07-03 22:07:06 +00:00
|
|
|
void SetInputSampleRateDivisor(unsigned int rate_divisor);
|
|
|
|
unsigned int GetInputSampleRateDivisor() const;
|
2015-02-23 17:43:13 +00:00
|
|
|
void SetVolume(unsigned int lvolume, unsigned int rvolume);
|
2022-06-11 04:27:10 +00:00
|
|
|
std::pair<s32, s32> GetVolume() const;
|
2017-04-11 11:41:35 +00:00
|
|
|
unsigned int AvailableSamples() const;
|
2016-01-14 08:00:47 +00:00
|
|
|
|
2014-04-11 01:28:19 +00:00
|
|
|
private:
|
2017-06-26 21:41:12 +00:00
|
|
|
Mixer* m_mixer;
|
2022-07-03 22:07:06 +00:00
|
|
|
unsigned m_input_sample_rate_divisor;
|
2021-07-04 10:44:56 +00:00
|
|
|
bool m_little_endian;
|
2016-01-14 06:19:25 +00:00
|
|
|
std::array<short, MAX_SAMPLES * 2> m_buffer{};
|
|
|
|
std::atomic<u32> m_indexW{0};
|
|
|
|
std::atomic<u32> m_indexR{0};
|
2015-02-23 17:43:13 +00:00
|
|
|
// Volume ranges from 0-256
|
2016-01-14 06:19:25 +00: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 01:28:19 +00:00
|
|
|
};
|
2017-04-10 16:44:17 +00:00
|
|
|
|
2022-01-06 15:43:43 +00:00
|
|
|
void RefreshConfig();
|
|
|
|
|
2022-07-03 22:07:06 +00:00
|
|
|
MixerFifo m_dma_mixer{this, FIXED_SAMPLE_RATE_DIVIDEND / 32000, false};
|
|
|
|
MixerFifo m_streaming_mixer{this, FIXED_SAMPLE_RATE_DIVIDEND / 48000, false};
|
|
|
|
MixerFifo m_wiimote_speaker_mixer{this, FIXED_SAMPLE_RATE_DIVIDEND / 3000, true};
|
2023-03-05 06:19:00 +00:00
|
|
|
MixerFifo m_skylander_portal_mixer{this, FIXED_SAMPLE_RATE_DIVIDEND / 8000, true};
|
2022-07-03 22:07:06 +00:00
|
|
|
std::array<MixerFifo, 4> m_gba_mixers{MixerFifo{this, FIXED_SAMPLE_RATE_DIVIDEND / 48000, true},
|
|
|
|
MixerFifo{this, FIXED_SAMPLE_RATE_DIVIDEND / 48000, true},
|
|
|
|
MixerFifo{this, FIXED_SAMPLE_RATE_DIVIDEND / 48000, true},
|
|
|
|
MixerFifo{this, FIXED_SAMPLE_RATE_DIVIDEND / 48000, true}};
|
2015-02-23 17:43:13 +00:00
|
|
|
unsigned int m_sampleRate;
|
2011-02-11 18:59:42 +00:00
|
|
|
|
2017-04-10 16:44:17 +00:00
|
|
|
bool m_is_stretching = false;
|
2017-04-24 02:08:33 +00:00
|
|
|
AudioCommon::AudioStretcher m_stretcher;
|
2017-08-09 19:57:26 +00:00
|
|
|
AudioCommon::SurroundDecoder m_surround_decoder;
|
2021-09-04 04:43:19 +00:00
|
|
|
std::array<short, MAX_SAMPLES * 2> m_scratch_buffer{};
|
2017-04-10 16:44:17 +00:00
|
|
|
|
2015-06-21 01:48:50 +00:00
|
|
|
WaveFileWriter m_wave_writer_dtk;
|
|
|
|
WaveFileWriter m_wave_writer_dsp;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-01-14 06:19:25 +00:00
|
|
|
bool m_log_dtk_audio = false;
|
|
|
|
bool m_log_dsp_audio = false;
|
2009-03-26 09:29:14 +00:00
|
|
|
|
2022-01-06 15:43:43 +00:00
|
|
|
float m_config_emulation_speed;
|
|
|
|
int m_config_timing_variance;
|
|
|
|
bool m_config_audio_stretch;
|
|
|
|
|
2023-08-16 19:37:12 +00:00
|
|
|
Config::ConfigChangedCallbackID m_config_changed_callback_id;
|
2015-02-23 17:43:13 +00:00
|
|
|
};
|