26 changed files with 4204 additions and 713 deletions
-
16src/audio_core/CMakeLists.txt
-
32src/audio_core/algorithm/interpolate.cpp
-
3src/audio_core/algorithm/interpolate.h
-
541src/audio_core/audio_renderer.cpp
-
224src/audio_core/audio_renderer.h
-
79src/audio_core/behavior_info.cpp
-
52src/audio_core/behavior_info.h
-
668src/audio_core/command_generator.cpp
-
83src/audio_core/command_generator.h
-
64src/audio_core/common.h
-
14src/audio_core/cubeb_sink.cpp
-
39src/audio_core/effect_context.cpp
-
114src/audio_core/effect_context.h
-
515src/audio_core/info_updater.cpp
-
58src/audio_core/info_updater.h
-
62src/audio_core/memory_pool.cpp
-
53src/audio_core/memory_pool.h
-
264src/audio_core/mix_context.cpp
-
107src/audio_core/mix_context.h
-
31src/audio_core/sink_context.cpp
-
89src/audio_core/sink_context.h
-
617src/audio_core/splitter_context.cpp
-
221src/audio_core/splitter_context.h
-
531src/audio_core/voice_context.cpp
-
291src/audio_core/voice_context.h
-
149src/core/hle/service/audio/audren_u.cpp
@ -0,0 +1,668 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "audio_core/algorithm/interpolate.h"
|
||||
|
#include "audio_core/command_generator.h"
|
||||
|
#include "audio_core/mix_context.h"
|
||||
|
#include "audio_core/voice_context.h"
|
||||
|
#include "core/memory.h"
|
||||
|
|
||||
|
namespace AudioCore { |
||||
|
namespace { |
||||
|
static constexpr std::size_t MIX_BUFFER_SIZE = 0x3f00; |
||||
|
static constexpr std::size_t SCALED_MIX_BUFFER_SIZE = MIX_BUFFER_SIZE << 15ULL; |
||||
|
|
||||
|
template <std::size_t N> |
||||
|
void ApplyMix(s32* output, const s32* input, s32 gain, s32 sample_count) { |
||||
|
for (s32 i = 0; i < sample_count; i += N) { |
||||
|
for (std::size_t j = 0; j < N; j++) { |
||||
|
output[i + j] += |
||||
|
static_cast<s32>((static_cast<s64>(input[i + j]) * gain + 0x4000) >> 15); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
s32 ApplyMixRamp(s32* output, const s32* input, float gain, float delta, s32 sample_count) { |
||||
|
s32 x = 0; |
||||
|
for (s32 i = 0; i < sample_count; i++) { |
||||
|
x = static_cast<s32>(static_cast<float>(input[i]) * gain); |
||||
|
output[i] += x; |
||||
|
gain += delta; |
||||
|
} |
||||
|
return x; |
||||
|
} |
||||
|
|
||||
|
void ApplyGain(s32* output, const s32* input, s32 gain, s32 delta, s32 sample_count) { |
||||
|
for (s32 i = 0; i < sample_count; i++) { |
||||
|
output[i] = static_cast<s32>((static_cast<s64>(input[i]) * gain + 0x4000) >> 15); |
||||
|
gain += delta; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void ApplyGainWithoutDelta(s32* output, const s32* input, s32 gain, s32 sample_count) { |
||||
|
for (s32 i = 0; i < sample_count; i++) { |
||||
|
output[i] = static_cast<s32>((static_cast<s64>(input[i]) * gain + 0x4000) >> 15); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
} // namespace
|
||||
|
|
||||
|
CommandGenerator::CommandGenerator(AudioCommon::AudioRendererParameter& worker_params, |
||||
|
VoiceContext& voice_context, MixContext& mix_context, |
||||
|
SplitterContext& splitter_context, Core::Memory::Memory& memory) |
||||
|
: worker_params(worker_params), voice_context(voice_context), mix_context(mix_context), |
||||
|
splitter_context(splitter_context), memory(memory), |
||||
|
mix_buffer((worker_params.mix_buffer_count + AudioCommon::MAX_CHANNEL_COUNT) * |
||||
|
worker_params.sample_count), |
||||
|
sample_buffer(MIX_BUFFER_SIZE) {} |
||||
|
CommandGenerator::~CommandGenerator() = default; |
||||
|
|
||||
|
void CommandGenerator::ClearMixBuffers() { |
||||
|
std::memset(mix_buffer.data(), 0, mix_buffer.size() * sizeof(s32)); |
||||
|
std::memset(sample_buffer.data(), 0, sample_buffer.size() * sizeof(s32)); |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateVoiceCommands() { |
||||
|
if (dumping_frame) { |
||||
|
LOG_CRITICAL(Audio, "(DSP_TRACE) GenerateVoiceCommands"); |
||||
|
} |
||||
|
// Grab all our voices
|
||||
|
const auto voice_count = voice_context.GetVoiceCount(); |
||||
|
for (std::size_t i = 0; i < voice_count; i++) { |
||||
|
auto& voice_info = voice_context.GetSortedInfo(i); |
||||
|
// Update voices and check if we should queue them
|
||||
|
if (voice_info.ShouldSkip() || !voice_info.UpdateForCommandGeneration(voice_context)) { |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
// Queue our voice
|
||||
|
GenerateVoiceCommand(voice_info); |
||||
|
} |
||||
|
// Update our splitters
|
||||
|
splitter_context.UpdateInternalState(); |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateVoiceCommand(ServerVoiceInfo& voice_info) { |
||||
|
auto& in_params = voice_info.GetInParams(); |
||||
|
const auto channel_count = in_params.channel_count; |
||||
|
|
||||
|
for (s32 channel = 0; channel < channel_count; channel++) { |
||||
|
const auto resource_id = in_params.voice_channel_resource_id[channel]; |
||||
|
auto& dsp_state = voice_context.GetDspSharedState(resource_id); |
||||
|
auto& channel_resource = voice_context.GetChannelResource(resource_id); |
||||
|
|
||||
|
// Decode our samples for our channel
|
||||
|
GenerateDataSourceCommand(voice_info, dsp_state, channel); |
||||
|
|
||||
|
if (in_params.should_depop) { |
||||
|
in_params.last_volume = 0.0f; |
||||
|
} else if (in_params.splitter_info_id != AudioCommon::NO_SPLITTER || |
||||
|
in_params.mix_id != AudioCommon::NO_MIX) { |
||||
|
// Apply a biquad filter if needed
|
||||
|
GenerateBiquadFilterCommandForVoice(voice_info, dsp_state, |
||||
|
worker_params.mix_buffer_count, channel); |
||||
|
// Base voice volume ramping
|
||||
|
GenerateVolumeRampCommand(in_params.last_volume, in_params.volume, channel, |
||||
|
in_params.node_id); |
||||
|
in_params.last_volume = in_params.volume; |
||||
|
|
||||
|
if (in_params.mix_id != AudioCommon::NO_MIX) { |
||||
|
// If we're using a mix id
|
||||
|
auto& mix_info = mix_context.GetInfo(in_params.mix_id); |
||||
|
const auto& dest_mix_params = mix_info.GetInParams(); |
||||
|
|
||||
|
// Voice Mixing
|
||||
|
GenerateVoiceMixCommand( |
||||
|
channel_resource.GetCurrentMixVolume(), channel_resource.GetLastMixVolume(), |
||||
|
dsp_state, dest_mix_params.buffer_offset, dest_mix_params.buffer_count, |
||||
|
worker_params.mix_buffer_count + channel, in_params.node_id); |
||||
|
|
||||
|
// Update last mix volumes
|
||||
|
channel_resource.UpdateLastMixVolumes(); |
||||
|
} else if (in_params.splitter_info_id != AudioCommon::NO_SPLITTER) { |
||||
|
s32 base = channel; |
||||
|
while (auto* destination_data = |
||||
|
GetDestinationData(in_params.splitter_info_id, base)) { |
||||
|
base += channel_count; |
||||
|
|
||||
|
if (!destination_data->IsConfigured()) { |
||||
|
continue; |
||||
|
} |
||||
|
if (destination_data->GetMixId() >= mix_context.GetCount()) { |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
const auto& mix_info = mix_context.GetInfo(destination_data->GetMixId()); |
||||
|
const auto& dest_mix_params = mix_info.GetInParams(); |
||||
|
GenerateVoiceMixCommand( |
||||
|
destination_data->CurrentMixVolumes(), destination_data->LastMixVolumes(), |
||||
|
dsp_state, dest_mix_params.buffer_offset, dest_mix_params.buffer_count, |
||||
|
worker_params.mix_buffer_count + channel, in_params.node_id); |
||||
|
destination_data->MarkDirty(); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// Update biquad filter enabled states
|
||||
|
for (std::size_t i = 0; i < AudioCommon::MAX_BIQUAD_FILTERS; i++) { |
||||
|
in_params.was_biquad_filter_enabled[i] = in_params.biquad_filter[i].enabled; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateSubMixCommands() { |
||||
|
const auto mix_count = mix_context.GetCount(); |
||||
|
for (std::size_t i = 0; i < mix_count; i++) { |
||||
|
auto& mix_info = mix_context.GetSortedInfo(i); |
||||
|
const auto& in_params = mix_info.GetInParams(); |
||||
|
if (!in_params.in_use || in_params.mix_id == AudioCommon::FINAL_MIX) { |
||||
|
continue; |
||||
|
} |
||||
|
GenerateSubMixCommand(mix_info); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateFinalMixCommands() { |
||||
|
GenerateFinalMixCommand(); |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::PreCommand() { |
||||
|
if (dumping_frame) { |
||||
|
for (std::size_t i = 0; i < splitter_context.GetInfoCount(); i++) { |
||||
|
const auto& base = splitter_context.GetInfo(i); |
||||
|
std::string graph = fmt::format("b[{}]", i); |
||||
|
auto* head = base.GetHead(); |
||||
|
while (head != nullptr) { |
||||
|
graph += fmt::format("->{}", head->GetMixId()); |
||||
|
head = head->GetNextDestination(); |
||||
|
} |
||||
|
LOG_CRITICAL(Audio, "(DSP_TRACE) SplitterGraph splitter_info={}, {}", i, graph); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::PostCommand() { |
||||
|
if (dumping_frame) { |
||||
|
dumping_frame = false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateDataSourceCommand(ServerVoiceInfo& voice_info, VoiceState& dsp_state, |
||||
|
s32 channel) { |
||||
|
auto& in_params = voice_info.GetInParams(); |
||||
|
const auto depop = in_params.should_depop; |
||||
|
|
||||
|
if (in_params.mix_id != AudioCommon::NO_MIX) { |
||||
|
auto& mix_info = mix_context.GetInfo(in_params.mix_id); |
||||
|
// mix_info.
|
||||
|
// TODO(ogniK): Depop to destination mix
|
||||
|
} else if (in_params.splitter_info_id != AudioCommon::NO_SPLITTER) { |
||||
|
// TODO(ogniK): Depop to splitter
|
||||
|
} |
||||
|
|
||||
|
if (!depop) { |
||||
|
switch (in_params.sample_format) { |
||||
|
case SampleFormat::Pcm16: |
||||
|
DecodeFromWaveBuffers(voice_info, GetChannelMixBuffer(channel), dsp_state, channel, |
||||
|
worker_params.sample_rate, worker_params.sample_count, |
||||
|
in_params.node_id); |
||||
|
break; |
||||
|
case SampleFormat::Adpcm: |
||||
|
ASSERT(channel == 0 && in_params.channel_count == 1); |
||||
|
DecodeFromWaveBuffers(voice_info, GetChannelMixBuffer(0), dsp_state, 0, |
||||
|
worker_params.sample_rate, worker_params.sample_count, |
||||
|
in_params.node_id); |
||||
|
break; |
||||
|
default: |
||||
|
UNREACHABLE_MSG("Unimplemented sample format={}", in_params.sample_format); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateBiquadFilterCommandForVoice(ServerVoiceInfo& voice_info, |
||||
|
VoiceState& dsp_state, |
||||
|
s32 mix_buffer_count, s32 channel) { |
||||
|
for (std::size_t i = 0; i < AudioCommon::MAX_BIQUAD_FILTERS; i++) { |
||||
|
const auto& in_params = voice_info.GetInParams(); |
||||
|
auto& biquad_filter = in_params.biquad_filter[i]; |
||||
|
// Check if biquad filter is actually used
|
||||
|
if (!biquad_filter.enabled) { |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
// Reinitialize our biquad filter state if it was enabled previously
|
||||
|
if (!in_params.was_biquad_filter_enabled[i]) { |
||||
|
std::memset(dsp_state.biquad_filter_state.data(), 0, |
||||
|
dsp_state.biquad_filter_state.size() * sizeof(s64)); |
||||
|
} |
||||
|
|
||||
|
// Generate biquad filter
|
||||
|
GenerateBiquadFilterCommand(mix_buffer_count, biquad_filter, dsp_state.biquad_filter_state, |
||||
|
mix_buffer_count + channel, mix_buffer_count + channel, |
||||
|
worker_params.sample_count, voice_info.GetInParams().node_id); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void AudioCore::CommandGenerator::GenerateBiquadFilterCommand( |
||||
|
s32 mix_buffer, const BiquadFilterParameter& params, std::array<s64, 2>& state, |
||||
|
std::size_t input_offset, std::size_t output_offset, s32 sample_count, s32 node_id) { |
||||
|
if (dumping_frame) { |
||||
|
LOG_CRITICAL(Audio, |
||||
|
"(DSP_TRACE) GenerateBiquadFilterCommand node_id={}, " |
||||
|
"input_mix_buffer={}, output_mix_buffer={}", |
||||
|
node_id, input_offset, output_offset); |
||||
|
} |
||||
|
const auto* input = GetMixBuffer(input_offset); |
||||
|
auto* output = GetMixBuffer(output_offset); |
||||
|
|
||||
|
// Biquad filter parameters
|
||||
|
const auto n0 = params.numerator[0]; |
||||
|
const auto n1 = params.numerator[1]; |
||||
|
const auto n2 = params.numerator[2]; |
||||
|
const auto d0 = params.denominator[0]; |
||||
|
const auto d1 = params.denominator[1]; |
||||
|
|
||||
|
// Biquad filter states
|
||||
|
auto s0 = state[0]; |
||||
|
auto s1 = state[1]; |
||||
|
|
||||
|
constexpr s64 MIN = std::numeric_limits<int32_t>::min(); |
||||
|
constexpr s64 MAX = std::numeric_limits<int32_t>::max(); |
||||
|
|
||||
|
for (int i = 0; i < sample_count; ++i) { |
||||
|
const auto sample = static_cast<int64_t>(input[i]); |
||||
|
const auto f = (sample * n0 + s0 + 0x4000) >> 15; |
||||
|
const auto y = std::clamp(f, MIN, MAX); |
||||
|
s0 = sample * n1 + y * d0 + s1; |
||||
|
s1 = sample * n2 + y * d1; |
||||
|
output[i] = static_cast<s32>(y); |
||||
|
} |
||||
|
|
||||
|
state[0] = s0; |
||||
|
state[1] = s1; |
||||
|
} |
||||
|
|
||||
|
ServerSplitterDestinationData* CommandGenerator::GetDestinationData(s32 splitter_id, s32 index) { |
||||
|
if (splitter_id == AudioCommon::NO_SPLITTER) { |
||||
|
return nullptr; |
||||
|
} |
||||
|
return splitter_context.GetDestinationData(splitter_id, index); |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateVolumeRampCommand(float last_volume, float current_volume, |
||||
|
s32 channel, s32 node_id) { |
||||
|
const auto last = static_cast<s32>(last_volume * 32768.0f); |
||||
|
const auto current = static_cast<s32>(current_volume * 32768.0f); |
||||
|
const auto delta = static_cast<s32>((static_cast<float>(current) - static_cast<float>(last)) / |
||||
|
static_cast<float>(worker_params.sample_count)); |
||||
|
|
||||
|
if (dumping_frame) { |
||||
|
LOG_CRITICAL(Audio, |
||||
|
"(DSP_TRACE) GenerateVolumeRampCommand node_id={}, input={}, output={}, " |
||||
|
"last_volume={}, current_volume={}", |
||||
|
node_id, GetMixChannelBufferOffset(channel), |
||||
|
GetMixChannelBufferOffset(channel), last_volume, current_volume); |
||||
|
} |
||||
|
// Apply generic gain on samples
|
||||
|
ApplyGain(GetChannelMixBuffer(channel), GetChannelMixBuffer(channel), last, delta, |
||||
|
worker_params.sample_count); |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateVoiceMixCommand(const MixVolumeBuffer& mix_volumes, |
||||
|
const MixVolumeBuffer& last_mix_volumes, |
||||
|
VoiceState& dsp_state, s32 mix_buffer_offset, |
||||
|
s32 mix_buffer_count, s32 voice_index, s32 node_id) { |
||||
|
// Loop all our mix buffers
|
||||
|
for (s32 i = 0; i < mix_buffer_count; i++) { |
||||
|
if (last_mix_volumes[i] != 0.0f || mix_volumes[i] != 0.0f) { |
||||
|
const auto delta = static_cast<float>((mix_volumes[i] - last_mix_volumes[i])) / |
||||
|
static_cast<float>(worker_params.sample_count); |
||||
|
|
||||
|
if (dumping_frame) { |
||||
|
LOG_CRITICAL(Audio, |
||||
|
"(DSP_TRACE) GenerateVoiceMixCommand node_id={}, input={}, " |
||||
|
"output={}, last_volume={}, current_volume={}", |
||||
|
node_id, voice_index, mix_buffer_offset + i, last_mix_volumes[i], |
||||
|
mix_volumes[i]); |
||||
|
} |
||||
|
|
||||
|
dsp_state.previous_samples[i] = |
||||
|
ApplyMixRamp(GetMixBuffer(mix_buffer_offset + i), GetMixBuffer(voice_index), |
||||
|
last_mix_volumes[i], delta, worker_params.sample_count); |
||||
|
} else { |
||||
|
dsp_state.previous_samples[i] = 0; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateSubMixCommand(ServerMixInfo& mix_info) { |
||||
|
if (dumping_frame) { |
||||
|
LOG_CRITICAL(Audio, "(DSP_TRACE) GenerateSubMixCommand"); |
||||
|
} |
||||
|
// TODO(ogniK): Depop
|
||||
|
// TODO(ogniK): Effects
|
||||
|
GenerateMixCommands(mix_info); |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateMixCommands(ServerMixInfo& mix_info) { |
||||
|
if (!mix_info.HasAnyConnection()) { |
||||
|
return; |
||||
|
} |
||||
|
const auto& in_params = mix_info.GetInParams(); |
||||
|
if (in_params.dest_mix_id != AudioCommon::NO_MIX) { |
||||
|
const auto& dest_mix = mix_context.GetInfo(in_params.dest_mix_id); |
||||
|
const auto& dest_in_params = dest_mix.GetInParams(); |
||||
|
|
||||
|
const auto buffer_count = in_params.buffer_count; |
||||
|
|
||||
|
for (s32 i = 0; i < buffer_count; i++) { |
||||
|
for (s32 j = 0; j < dest_in_params.buffer_count; j++) { |
||||
|
const auto mixed_volume = in_params.volume * in_params.mix_volume[i][j]; |
||||
|
if (mixed_volume != 0.0f) { |
||||
|
GenerateMixCommand(dest_in_params.buffer_offset + j, |
||||
|
in_params.buffer_offset + i, mixed_volume, |
||||
|
in_params.node_id); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} else if (in_params.splitter_id != AudioCommon::NO_SPLITTER) { |
||||
|
s32 base{}; |
||||
|
while (const auto* destination_data = GetDestinationData(in_params.splitter_id, base++)) { |
||||
|
if (!destination_data->IsConfigured()) { |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
const auto& dest_mix = mix_context.GetInfo(destination_data->GetMixId()); |
||||
|
const auto& dest_in_params = dest_mix.GetInParams(); |
||||
|
const auto mix_index = (base - 1) % in_params.buffer_count + in_params.buffer_offset; |
||||
|
for (std::size_t i = 0; i < dest_in_params.buffer_count; i++) { |
||||
|
const auto mixed_volume = in_params.volume * destination_data->GetMixVolume(i); |
||||
|
if (mixed_volume != 0.0f) { |
||||
|
GenerateMixCommand(dest_in_params.buffer_offset + i, mix_index, mixed_volume, |
||||
|
in_params.node_id); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateMixCommand(std::size_t output_offset, std::size_t input_offset, |
||||
|
float volume, s32 node_id) { |
||||
|
|
||||
|
if (dumping_frame) { |
||||
|
LOG_CRITICAL(Audio, |
||||
|
"(DSP_TRACE) GenerateMixCommand node_id={}, input={}, output={}, volume={}", |
||||
|
node_id, input_offset, output_offset, volume); |
||||
|
} |
||||
|
|
||||
|
auto* output = GetMixBuffer(output_offset); |
||||
|
const auto* input = GetMixBuffer(input_offset); |
||||
|
|
||||
|
const s32 gain = static_cast<s32>(volume * 32768.0f); |
||||
|
// Mix with loop unrolling
|
||||
|
if (worker_params.sample_count % 4 == 0) { |
||||
|
ApplyMix<4>(output, input, gain, worker_params.sample_count); |
||||
|
} else if (worker_params.sample_count % 2 == 0) { |
||||
|
ApplyMix<2>(output, input, gain, worker_params.sample_count); |
||||
|
} else { |
||||
|
ApplyMix<1>(output, input, gain, worker_params.sample_count); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::GenerateFinalMixCommand() { |
||||
|
if (dumping_frame) { |
||||
|
LOG_CRITICAL(Audio, "(DSP_TRACE) GenerateFinalMixCommand"); |
||||
|
} |
||||
|
// TODO(ogniK): Depop
|
||||
|
// TODO(ogniK): Effects
|
||||
|
auto& mix_info = mix_context.GetFinalMixInfo(); |
||||
|
const auto in_params = mix_info.GetInParams(); |
||||
|
for (s32 i = 0; i < in_params.buffer_count; i++) { |
||||
|
const s32 gain = static_cast<s32>(in_params.volume * 32768.0f); |
||||
|
if (dumping_frame) { |
||||
|
LOG_CRITICAL( |
||||
|
Audio, |
||||
|
"(DSP_TRACE) ApplyGainWithoutDelta node_id={}, input={}, output={}, volume={}", |
||||
|
in_params.node_id, in_params.buffer_offset + i, in_params.buffer_offset + i, |
||||
|
in_params.volume); |
||||
|
} |
||||
|
ApplyGainWithoutDelta(GetMixBuffer(in_params.buffer_offset + i), |
||||
|
GetMixBuffer(in_params.buffer_offset + i), gain, |
||||
|
worker_params.sample_count); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
s32 CommandGenerator::DecodePcm16(ServerVoiceInfo& voice_info, VoiceState& dsp_state, |
||||
|
s32 sample_count, s32 channel, std::size_t mix_offset) { |
||||
|
auto& in_params = voice_info.GetInParams(); |
||||
|
const auto& wave_buffer = in_params.wave_buffer[dsp_state.wave_buffer_index]; |
||||
|
if (wave_buffer.buffer_address == 0) { |
||||
|
return 0; |
||||
|
} |
||||
|
if (wave_buffer.buffer_size == 0) { |
||||
|
return 0; |
||||
|
} |
||||
|
if (wave_buffer.end_sample_offset < wave_buffer.start_sample_offset) { |
||||
|
return 0; |
||||
|
} |
||||
|
const auto samples_remaining = |
||||
|
(wave_buffer.end_sample_offset - wave_buffer.start_sample_offset) - dsp_state.offset; |
||||
|
const auto start_offset = |
||||
|
((wave_buffer.start_sample_offset + dsp_state.offset) * in_params.channel_count) * |
||||
|
sizeof(s16); |
||||
|
const auto buffer_pos = wave_buffer.buffer_address + start_offset; |
||||
|
const auto samples_processed = std::min(sample_count, samples_remaining); |
||||
|
|
||||
|
if (in_params.channel_count == 1) { |
||||
|
std::vector<s16> buffer(samples_processed); |
||||
|
memory.ReadBlock(buffer_pos, buffer.data(), buffer.size() * sizeof(s16)); |
||||
|
for (std::size_t i = 0; i < buffer.size(); i++) { |
||||
|
sample_buffer[mix_offset + i] = buffer[i]; |
||||
|
} |
||||
|
} else { |
||||
|
const auto channel_count = in_params.channel_count; |
||||
|
std::vector<s16> buffer(samples_processed * channel_count); |
||||
|
memory.ReadBlock(buffer_pos, buffer.data(), buffer.size() * sizeof(s16)); |
||||
|
|
||||
|
for (std::size_t i = 0; i < samples_processed; i++) { |
||||
|
sample_buffer[mix_offset + i] = buffer[i * channel_count + channel]; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
return samples_processed; |
||||
|
} |
||||
|
s32 CommandGenerator::DecodeAdpcm(ServerVoiceInfo& voice_info, VoiceState& dsp_state, |
||||
|
s32 sample_count, s32 channel, std::size_t mix_offset) { |
||||
|
auto& in_params = voice_info.GetInParams(); |
||||
|
const auto& wave_buffer = in_params.wave_buffer[dsp_state.wave_buffer_index]; |
||||
|
if (wave_buffer.buffer_address == 0) { |
||||
|
return 0; |
||||
|
} |
||||
|
if (wave_buffer.buffer_size == 0) { |
||||
|
return 0; |
||||
|
} |
||||
|
if (wave_buffer.end_sample_offset < wave_buffer.start_sample_offset) { |
||||
|
return 0; |
||||
|
} |
||||
|
|
||||
|
const auto samples_remaining = |
||||
|
(wave_buffer.end_sample_offset - wave_buffer.start_sample_offset) - dsp_state.offset; |
||||
|
const auto start_offset = |
||||
|
((wave_buffer.start_sample_offset + dsp_state.offset) * in_params.channel_count); |
||||
|
const auto buffer_pos = wave_buffer.buffer_address + start_offset; |
||||
|
|
||||
|
const auto samples_processed = std::min(sample_count, samples_remaining); |
||||
|
|
||||
|
if (start_offset > dsp_state.adpcm_samples.size()) { |
||||
|
dsp_state.adpcm_samples.clear(); |
||||
|
} |
||||
|
|
||||
|
// TODO(ogniK): Proper ADPCM streaming
|
||||
|
if (dsp_state.adpcm_samples.empty()) { |
||||
|
Codec::ADPCM_Coeff coeffs; |
||||
|
memory.ReadBlock(in_params.additional_params_address, coeffs.data(), |
||||
|
sizeof(Codec::ADPCM_Coeff)); |
||||
|
std::vector<u8> buffer(wave_buffer.buffer_size); |
||||
|
memory.ReadBlock(wave_buffer.buffer_address, buffer.data(), buffer.size()); |
||||
|
dsp_state.adpcm_samples = |
||||
|
std::move(Codec::DecodeADPCM(buffer.data(), buffer.size(), coeffs, dsp_state.context)); |
||||
|
} |
||||
|
|
||||
|
for (std::size_t i = 0; i < samples_processed; i++) { |
||||
|
const auto sample_offset = i + start_offset; |
||||
|
sample_buffer[mix_offset + i] = |
||||
|
dsp_state.adpcm_samples[sample_offset * in_params.channel_count + channel]; |
||||
|
} |
||||
|
|
||||
|
return samples_processed; |
||||
|
} |
||||
|
|
||||
|
s32* CommandGenerator::GetMixBuffer(std::size_t index) { |
||||
|
return mix_buffer.data() + (index * worker_params.sample_count); |
||||
|
} |
||||
|
|
||||
|
const s32* CommandGenerator::GetMixBuffer(std::size_t index) const { |
||||
|
return mix_buffer.data() + (index * worker_params.sample_count); |
||||
|
} |
||||
|
|
||||
|
std::size_t CommandGenerator::GetMixChannelBufferOffset(s32 channel) const { |
||||
|
return worker_params.mix_buffer_count + channel; |
||||
|
} |
||||
|
|
||||
|
s32* CommandGenerator::GetChannelMixBuffer(s32 channel) { |
||||
|
return GetMixBuffer(worker_params.mix_buffer_count + channel); |
||||
|
} |
||||
|
|
||||
|
const s32* CommandGenerator::GetChannelMixBuffer(s32 channel) const { |
||||
|
return GetMixBuffer(worker_params.mix_buffer_count + channel); |
||||
|
} |
||||
|
|
||||
|
void CommandGenerator::DecodeFromWaveBuffers(ServerVoiceInfo& voice_info, s32* output, |
||||
|
VoiceState& dsp_state, s32 channel, |
||||
|
s32 target_sample_rate, s32 sample_count, |
||||
|
s32 node_id) { |
||||
|
auto& in_params = voice_info.GetInParams(); |
||||
|
if (dumping_frame) { |
||||
|
LOG_CRITICAL(Audio, |
||||
|
"(DSP_TRACE) DecodeFromWaveBuffers, node_id={}, channel={}, " |
||||
|
"format={}, sample_count={}, sample_rate={}, mix_id={}, splitter_id={}", |
||||
|
node_id, channel, in_params.sample_format, sample_count, in_params.sample_rate, |
||||
|
in_params.mix_id, in_params.splitter_info_id); |
||||
|
} |
||||
|
ASSERT_OR_EXECUTE(output != nullptr, { return; }); |
||||
|
|
||||
|
const auto resample_rate = static_cast<s32>( |
||||
|
static_cast<float>(in_params.sample_rate) / static_cast<float>(target_sample_rate) * |
||||
|
static_cast<float>(static_cast<s32>(in_params.pitch * 32768.0f))); |
||||
|
auto* output_base = output; |
||||
|
if ((dsp_state.fraction + sample_count * resample_rate) > (SCALED_MIX_BUFFER_SIZE - 4ULL)) { |
||||
|
return; |
||||
|
} |
||||
|
|
||||
|
auto min_required_samples = |
||||
|
std::min(static_cast<s32>(SCALED_MIX_BUFFER_SIZE) - dsp_state.fraction, resample_rate); |
||||
|
if (min_required_samples >= sample_count) { |
||||
|
min_required_samples = sample_count; |
||||
|
} |
||||
|
|
||||
|
std::size_t temp_mix_offset{}; |
||||
|
bool is_buffer_completed{false}; |
||||
|
auto samples_remaining = sample_count; |
||||
|
while (samples_remaining > 0 && !is_buffer_completed) { |
||||
|
const auto samples_to_output = std::min(samples_remaining, min_required_samples); |
||||
|
const auto samples_to_read = (samples_to_output * resample_rate + dsp_state.fraction) >> 15; |
||||
|
|
||||
|
if (!in_params.behavior_flags.is_pitch_and_src_skipped) { |
||||
|
// Append sample histtory for resampler
|
||||
|
for (std::size_t i = 0; i < AudioCommon::MAX_SAMPLE_HISTORY; i++) { |
||||
|
sample_buffer[temp_mix_offset + i] = dsp_state.sample_history[i]; |
||||
|
} |
||||
|
temp_mix_offset += 4; |
||||
|
} |
||||
|
|
||||
|
s32 samples_read{}; |
||||
|
while (samples_read < samples_to_read) { |
||||
|
const auto& wave_buffer = in_params.wave_buffer[dsp_state.wave_buffer_index]; |
||||
|
// No more data can be read
|
||||
|
if (!dsp_state.is_wave_buffer_valid[dsp_state.wave_buffer_index]) { |
||||
|
is_buffer_completed = true; |
||||
|
break; |
||||
|
} |
||||
|
|
||||
|
if (in_params.sample_format == SampleFormat::Adpcm && dsp_state.offset == 0 && |
||||
|
wave_buffer.context_address != 0 && wave_buffer.context_size != 0) { |
||||
|
// TODO(ogniK): ADPCM loop context
|
||||
|
} |
||||
|
|
||||
|
s32 samples_decoded{0}; |
||||
|
switch (in_params.sample_format) { |
||||
|
case SampleFormat::Pcm16: |
||||
|
samples_decoded = DecodePcm16(voice_info, dsp_state, samples_to_read - samples_read, |
||||
|
channel, temp_mix_offset); |
||||
|
break; |
||||
|
case SampleFormat::Adpcm: |
||||
|
samples_decoded = DecodeAdpcm(voice_info, dsp_state, samples_to_read - samples_read, |
||||
|
channel, temp_mix_offset); |
||||
|
break; |
||||
|
default: |
||||
|
UNREACHABLE_MSG("Unimplemented sample format={}", in_params.sample_format); |
||||
|
} |
||||
|
|
||||
|
temp_mix_offset += samples_decoded; |
||||
|
samples_read += samples_decoded; |
||||
|
dsp_state.offset += samples_decoded; |
||||
|
dsp_state.played_sample_count += samples_decoded; |
||||
|
|
||||
|
if (dsp_state.offset >= |
||||
|
(wave_buffer.end_sample_offset - wave_buffer.start_sample_offset) || |
||||
|
samples_decoded == 0) { |
||||
|
// Reset our sample offset
|
||||
|
dsp_state.offset = 0; |
||||
|
if (wave_buffer.is_looping) { |
||||
|
if (samples_decoded == 0) { |
||||
|
// End of our buffer
|
||||
|
is_buffer_completed = true; |
||||
|
break; |
||||
|
} |
||||
|
|
||||
|
if (in_params.behavior_flags.is_played_samples_reset_at_loop_point.Value()) { |
||||
|
dsp_state.played_sample_count = 0; |
||||
|
} |
||||
|
} else { |
||||
|
if (in_params.sample_format == SampleFormat::Adpcm) { |
||||
|
// TODO(ogniK): Remove this when ADPCM streaming implemented
|
||||
|
dsp_state.adpcm_samples.clear(); |
||||
|
} |
||||
|
|
||||
|
// Update our wave buffer states
|
||||
|
dsp_state.is_wave_buffer_valid[dsp_state.wave_buffer_index] = false; |
||||
|
dsp_state.wave_buffer_consumed++; |
||||
|
dsp_state.wave_buffer_index = |
||||
|
(dsp_state.wave_buffer_index + 1) % AudioCommon::MAX_WAVE_BUFFERS; |
||||
|
if (wave_buffer.end_of_stream) { |
||||
|
dsp_state.played_sample_count = 0; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if (in_params.behavior_flags.is_pitch_and_src_skipped.Value()) { |
||||
|
// No need to resample
|
||||
|
memcpy(output, sample_buffer.data(), samples_read * sizeof(s32)); |
||||
|
} else { |
||||
|
std::memset(sample_buffer.data() + temp_mix_offset, 0, |
||||
|
sizeof(s32) * (samples_to_read - samples_read)); |
||||
|
AudioCore::Resample(output, sample_buffer.data(), resample_rate, dsp_state.fraction, |
||||
|
samples_to_output); |
||||
|
// Resample
|
||||
|
for (std::size_t i = 0; i < AudioCommon::MAX_SAMPLE_HISTORY; i++) { |
||||
|
dsp_state.sample_history[i] = sample_buffer[samples_to_read + i]; |
||||
|
} |
||||
|
} |
||||
|
output += samples_to_output; |
||||
|
samples_remaining -= samples_to_output; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
} // namespace AudioCore
|
||||
@ -0,0 +1,83 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include <array> |
||||
|
#include "audio_core/common.h" |
||||
|
#include "audio_core/voice_context.h" |
||||
|
#include "common/common_funcs.h" |
||||
|
#include "common/common_types.h" |
||||
|
|
||||
|
namespace Core::Memory { |
||||
|
class Memory; |
||||
|
} |
||||
|
|
||||
|
namespace AudioCore { |
||||
|
class MixContext; |
||||
|
class SplitterContext; |
||||
|
class ServerSplitterDestinationData; |
||||
|
class ServerMixInfo; |
||||
|
using MixVolumeBuffer = std::array<float, AudioCommon::MAX_MIX_BUFFERS>; |
||||
|
class CommandGenerator { |
||||
|
public: |
||||
|
explicit CommandGenerator(AudioCommon::AudioRendererParameter& worker_params, |
||||
|
VoiceContext& voice_context, MixContext& mix_context, |
||||
|
SplitterContext& splitter_context, Core::Memory::Memory& memory); |
||||
|
~CommandGenerator(); |
||||
|
|
||||
|
void ClearMixBuffers(); |
||||
|
void GenerateVoiceCommands(); |
||||
|
void GenerateVoiceCommand(ServerVoiceInfo& voice_info); |
||||
|
void GenerateSubMixCommands(); |
||||
|
void GenerateFinalMixCommands(); |
||||
|
void PreCommand(); |
||||
|
void PostCommand(); |
||||
|
|
||||
|
s32* GetChannelMixBuffer(s32 channel); |
||||
|
const s32* GetChannelMixBuffer(s32 channel) const; |
||||
|
s32* GetMixBuffer(std::size_t index); |
||||
|
const s32* GetMixBuffer(std::size_t index) const; |
||||
|
std::size_t GetMixChannelBufferOffset(s32 channel) const; |
||||
|
|
||||
|
private: |
||||
|
void GenerateDataSourceCommand(ServerVoiceInfo& voice_info, VoiceState& dsp_state, s32 channel); |
||||
|
void GenerateBiquadFilterCommandForVoice(ServerVoiceInfo& voice_info, VoiceState& dsp_state, |
||||
|
s32 mix_buffer_count, s32 channel); |
||||
|
void GenerateVolumeRampCommand(float last_volume, float current_volume, s32 channel, |
||||
|
s32 node_id); |
||||
|
void GenerateVoiceMixCommand(const MixVolumeBuffer& mix_volumes, |
||||
|
const MixVolumeBuffer& last_mix_volumes, VoiceState& dsp_state, |
||||
|
s32 mix_buffer_offset, s32 mix_buffer_count, s32 voice_index, |
||||
|
s32 node_id); |
||||
|
void GenerateSubMixCommand(ServerMixInfo& mix_info); |
||||
|
void GenerateMixCommands(ServerMixInfo& mix_info); |
||||
|
void GenerateMixCommand(std::size_t output_offset, std::size_t input_offset, float volume, |
||||
|
s32 node_id); |
||||
|
void GenerateFinalMixCommand(); |
||||
|
void GenerateBiquadFilterCommand(s32 mix_buffer, const BiquadFilterParameter& params, |
||||
|
std::array<s64, 2>& state, std::size_t input_offset, |
||||
|
std::size_t output_offset, s32 sample_count, s32 node_id); |
||||
|
void GenerateDepopPrepareCommand(VoiceState& dsp_state); |
||||
|
ServerSplitterDestinationData* GetDestinationData(s32 splitter_id, s32 index); |
||||
|
|
||||
|
// DSP Code |
||||
|
s32 DecodePcm16(ServerVoiceInfo& voice_info, VoiceState& dsp_state, s32 sample_count, |
||||
|
s32 channel, std::size_t mix_offset); |
||||
|
s32 DecodeAdpcm(ServerVoiceInfo& voice_info, VoiceState& dsp_state, s32 sample_count, |
||||
|
s32 channel, std::size_t mix_offset); |
||||
|
void DecodeFromWaveBuffers(ServerVoiceInfo& voice_info, s32* output, VoiceState& dsp_state, |
||||
|
s32 channel, s32 target_sample_rate, s32 sample_count, s32 node_id); |
||||
|
void Resample(s32* output, s32* input, s32 pitch, s32& fraction, s32 sample_count); |
||||
|
|
||||
|
AudioCommon::AudioRendererParameter& worker_params; |
||||
|
VoiceContext& voice_context; |
||||
|
MixContext& mix_context; |
||||
|
SplitterContext& splitter_context; |
||||
|
Core::Memory::Memory& memory; |
||||
|
std::vector<s32> mix_buffer{}; |
||||
|
std::vector<s32> sample_buffer{}; |
||||
|
bool dumping_frame{false}; |
||||
|
}; |
||||
|
} // namespace AudioCore |
||||
@ -0,0 +1,39 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "audio_core/effect_context.h"
|
||||
|
|
||||
|
namespace AudioCore { |
||||
|
EffectContext::EffectContext(std::size_t effect_count) : effect_count(effect_count) { |
||||
|
for (std::size_t i = 0; i < effect_count; i++) { |
||||
|
effects.push_back(std::make_unique<EffectStubbed>()); |
||||
|
} |
||||
|
} |
||||
|
EffectContext::~EffectContext() = default; |
||||
|
|
||||
|
std::size_t EffectContext::GetCount() const { |
||||
|
return effect_count; |
||||
|
} |
||||
|
|
||||
|
EffectBase* EffectContext::GetInfo(std::size_t i) { |
||||
|
return effects.at(i).get(); |
||||
|
} |
||||
|
|
||||
|
EffectStubbed::EffectStubbed() : EffectBase::EffectBase() {} |
||||
|
EffectStubbed::~EffectStubbed() = default; |
||||
|
|
||||
|
void EffectStubbed::Update(EffectInfo::InParams& in_params) { |
||||
|
if (in_params.is_new) { |
||||
|
usage = UsageStatus::New; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
EffectBase::EffectBase() = default; |
||||
|
EffectBase::~EffectBase() = default; |
||||
|
|
||||
|
UsageStatus EffectBase::GetUsage() const { |
||||
|
return usage; |
||||
|
} |
||||
|
|
||||
|
} // namespace AudioCore
|
||||
@ -0,0 +1,114 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include <array> |
||||
|
#include <memory> |
||||
|
#include <vector> |
||||
|
#include "audio_core/common.h" |
||||
|
#include "common/common_funcs.h" |
||||
|
#include "common/common_types.h" |
||||
|
#include "common/swap.h" |
||||
|
|
||||
|
namespace AudioCore { |
||||
|
enum class EffectType : u8 { |
||||
|
Invalid = 0, |
||||
|
BufferMixer = 1, |
||||
|
Aux = 2, |
||||
|
Delay = 3, |
||||
|
Reverb = 4, |
||||
|
I3dl2Reverb = 5, |
||||
|
BiquadFilter = 6, |
||||
|
}; |
||||
|
|
||||
|
enum class UsageStatus : u8 { |
||||
|
Invalid = 0, |
||||
|
New = 1, |
||||
|
Initialized = 2, |
||||
|
Used = 3, |
||||
|
Removed = 4, |
||||
|
}; |
||||
|
|
||||
|
struct BufferMixerParams { |
||||
|
std::array<s8, AudioCommon::MAX_MIX_BUFFERS> input{}; |
||||
|
std::array<s8, AudioCommon::MAX_MIX_BUFFERS> output{}; |
||||
|
std::array<float_le, AudioCommon::MAX_MIX_BUFFERS> volume{}; |
||||
|
s32_le count{}; |
||||
|
}; |
||||
|
static_assert(sizeof(BufferMixerParams) == 0x94, "BufferMixerParams is an invalid size"); |
||||
|
|
||||
|
struct AuxInfo { |
||||
|
std::array<s8, AudioCommon::MAX_MIX_BUFFERS> input_mix_buffers{}; |
||||
|
std::array<s8, AudioCommon::MAX_MIX_BUFFERS> output_mix_buffers{}; |
||||
|
u32_le count{}; |
||||
|
s32_le sample_rate{}; |
||||
|
s32_le sample_count{}; |
||||
|
s32_le mix_buffer_count{}; |
||||
|
u64_le send_buffer_info{}; |
||||
|
u64_le send_buffer_base{}; |
||||
|
|
||||
|
u64_le return_buffer_info{}; |
||||
|
u64_le return_buffer_base{}; |
||||
|
}; |
||||
|
static_assert(sizeof(AuxInfo) == 0x60, "AuxInfo is an invalid size"); |
||||
|
|
||||
|
class EffectInfo { |
||||
|
public: |
||||
|
struct InParams { |
||||
|
EffectType type{}; |
||||
|
u8 is_new{}; |
||||
|
u8 is_enabled{}; |
||||
|
INSERT_PADDING_BYTES(1); |
||||
|
s32_le mix_id{}; |
||||
|
u64_le buffer_address{}; |
||||
|
u64_le buffer_size{}; |
||||
|
s32_le priority{}; |
||||
|
INSERT_PADDING_BYTES(4); |
||||
|
union { |
||||
|
std::array<u8, 0xa0> raw; |
||||
|
}; |
||||
|
}; |
||||
|
static_assert(sizeof(EffectInfo::InParams) == 0xc0, "InParams is an invalid size"); |
||||
|
|
||||
|
struct OutParams { |
||||
|
UsageStatus status{}; |
||||
|
INSERT_PADDING_BYTES(15); |
||||
|
}; |
||||
|
static_assert(sizeof(EffectInfo::OutParams) == 0x10, "OutParams is an invalid size"); |
||||
|
}; |
||||
|
|
||||
|
class EffectBase { |
||||
|
public: |
||||
|
EffectBase(); |
||||
|
~EffectBase(); |
||||
|
|
||||
|
virtual void Update(EffectInfo::InParams& in_params) = 0; |
||||
|
UsageStatus GetUsage() const; |
||||
|
|
||||
|
protected: |
||||
|
UsageStatus usage{UsageStatus::Invalid}; |
||||
|
}; |
||||
|
|
||||
|
class EffectStubbed : public EffectBase { |
||||
|
public: |
||||
|
explicit EffectStubbed(); |
||||
|
~EffectStubbed(); |
||||
|
|
||||
|
void Update(EffectInfo::InParams& in_params) override; |
||||
|
}; |
||||
|
|
||||
|
class EffectContext { |
||||
|
public: |
||||
|
explicit EffectContext(std::size_t effect_count); |
||||
|
~EffectContext(); |
||||
|
|
||||
|
std::size_t GetCount() const; |
||||
|
EffectBase* GetInfo(std::size_t i); |
||||
|
|
||||
|
private: |
||||
|
std::size_t effect_count{}; |
||||
|
std::vector<std::unique_ptr<EffectBase>> effects; |
||||
|
}; |
||||
|
} // namespace AudioCore |
||||
@ -0,0 +1,515 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "audio_core/behavior_info.h"
|
||||
|
#include "audio_core/effect_context.h"
|
||||
|
#include "audio_core/info_updater.h"
|
||||
|
#include "audio_core/memory_pool.h"
|
||||
|
#include "audio_core/mix_context.h"
|
||||
|
#include "audio_core/sink_context.h"
|
||||
|
#include "audio_core/splitter_context.h"
|
||||
|
#include "audio_core/voice_context.h"
|
||||
|
#include "common/logging/log.h"
|
||||
|
|
||||
|
namespace AudioCore { |
||||
|
|
||||
|
InfoUpdater::InfoUpdater(const std::vector<u8>& in_params, std::vector<u8>& out_params, |
||||
|
BehaviorInfo& behavior_info) |
||||
|
: in_params(in_params), out_params(out_params), behavior_info(behavior_info) { |
||||
|
ASSERT( |
||||
|
AudioCommon::CanConsumeBuffer(in_params.size(), 0, sizeof(AudioCommon::UpdateDataHeader))); |
||||
|
std::memcpy(&input_header, in_params.data(), sizeof(AudioCommon::UpdateDataHeader)); |
||||
|
output_header.total_size = sizeof(AudioCommon::UpdateDataHeader); |
||||
|
} |
||||
|
|
||||
|
InfoUpdater::~InfoUpdater() = default; |
||||
|
|
||||
|
bool InfoUpdater::UpdateBehaviorInfo(BehaviorInfo& in_behavior_info) { |
||||
|
if (input_header.size.behavior != sizeof(BehaviorInfo::InParams)) { |
||||
|
LOG_ERROR(Audio, "Behavior info is an invalid size, expecting 0x{:X} but got 0x{:X}", |
||||
|
sizeof(BehaviorInfo::InParams), input_header.size.behavior); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(in_params.size(), input_offset, |
||||
|
sizeof(BehaviorInfo::InParams))) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
BehaviorInfo::InParams behavior_in{}; |
||||
|
std::memcpy(&behavior_in, in_params.data() + input_offset, sizeof(BehaviorInfo::InParams)); |
||||
|
input_offset += sizeof(BehaviorInfo::InParams); |
||||
|
|
||||
|
// Make sure it's an audio revision we can actually support
|
||||
|
if (!AudioCommon::IsValidRevision(behavior_in.revision)) { |
||||
|
LOG_ERROR(Audio, "Invalid input revision, revision=0x{:08X}", behavior_in.revision); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
// Make sure that our behavior info revision matches the input
|
||||
|
if (in_behavior_info.GetUserRevision() != behavior_in.revision) { |
||||
|
LOG_ERROR(Audio, |
||||
|
"User revision differs from input revision, expecting 0x{:08X} but got 0x{:08X}", |
||||
|
in_behavior_info.GetUserRevision(), behavior_in.revision); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
// Update behavior info flags
|
||||
|
in_behavior_info.ClearError(); |
||||
|
in_behavior_info.UpdateFlags(behavior_in.flags); |
||||
|
|
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::UpdateMemoryPools(std::vector<ServerMemoryPoolInfo>& memory_pool_info) { |
||||
|
const auto force_mapping = behavior_info.IsMemoryPoolForceMappingEnabled(); |
||||
|
const auto memory_pool_count = memory_pool_info.size(); |
||||
|
const auto total_memory_pool_in = sizeof(ServerMemoryPoolInfo::InParams) * memory_pool_count; |
||||
|
const auto total_memory_pool_out = sizeof(ServerMemoryPoolInfo::OutParams) * memory_pool_count; |
||||
|
|
||||
|
if (input_header.size.memory_pool != total_memory_pool_in) { |
||||
|
LOG_ERROR(Audio, "Memory pools are an invalid size, expecting 0x{:X} but got 0x{:X}", |
||||
|
total_memory_pool_in, input_header.size.memory_pool); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(in_params.size(), input_offset, total_memory_pool_in)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
std::vector<ServerMemoryPoolInfo::InParams> mempool_in(memory_pool_count); |
||||
|
std::vector<ServerMemoryPoolInfo::OutParams> mempool_out(memory_pool_count); |
||||
|
|
||||
|
std::memcpy(mempool_in.data(), in_params.data() + input_offset, total_memory_pool_in); |
||||
|
input_offset += total_memory_pool_in; |
||||
|
|
||||
|
// Update our memory pools
|
||||
|
for (std::size_t i = 0; i < memory_pool_count; i++) { |
||||
|
if (!memory_pool_info[i].Update(mempool_in[i], mempool_out[i])) { |
||||
|
LOG_ERROR(Audio, "Failed to update memory pool {}!", i); |
||||
|
return false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(out_params.size(), output_offset, |
||||
|
sizeof(BehaviorInfo::InParams))) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
std::memcpy(out_params.data() + output_offset, mempool_out.data(), total_memory_pool_out); |
||||
|
output_offset += total_memory_pool_out; |
||||
|
output_header.size.memory_pool = static_cast<u32>(total_memory_pool_out); |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::UpdateVoiceChannelResources(VoiceContext& voice_context) { |
||||
|
const auto voice_count = voice_context.GetVoiceCount(); |
||||
|
const auto voice_size = voice_count * sizeof(VoiceChannelResource::InParams); |
||||
|
std::vector<VoiceChannelResource::InParams> resources_in(voice_count); |
||||
|
|
||||
|
if (input_header.size.voice_channel_resource != voice_size) { |
||||
|
LOG_ERROR(Audio, "VoiceChannelResource is an invalid size, expecting 0x{:X} but got 0x{:X}", |
||||
|
voice_size, input_header.size.voice_channel_resource); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(in_params.size(), input_offset, voice_size)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
std::memcpy(resources_in.data(), in_params.data() + input_offset, voice_size); |
||||
|
input_offset += voice_size; |
||||
|
|
||||
|
// Update our channel resources
|
||||
|
for (std::size_t i = 0; i < voice_count; i++) { |
||||
|
// Grab our channel resource
|
||||
|
auto& resource = voice_context.GetChannelResource(i); |
||||
|
resource.Update(resources_in[i]); |
||||
|
} |
||||
|
|
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::UpdateVoices(VoiceContext& voice_context, |
||||
|
std::vector<ServerMemoryPoolInfo>& memory_pool_info, |
||||
|
VAddr audio_codec_dsp_addr) { |
||||
|
const auto voice_count = voice_context.GetVoiceCount(); |
||||
|
std::vector<VoiceInfo::InParams> voice_in(voice_count); |
||||
|
std::vector<VoiceInfo::OutParams> voice_out(voice_count); |
||||
|
|
||||
|
const auto voice_in_size = voice_count * sizeof(VoiceInfo::InParams); |
||||
|
const auto voice_out_size = voice_count * sizeof(VoiceInfo::OutParams); |
||||
|
|
||||
|
if (input_header.size.voice != voice_in_size) { |
||||
|
LOG_ERROR(Audio, "Voices are an invalid size, expecting 0x{:X} but got 0x{:X}", |
||||
|
voice_in_size, input_header.size.voice); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(in_params.size(), input_offset, voice_in_size)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
std::memcpy(voice_in.data(), in_params.data() + input_offset, voice_in_size); |
||||
|
input_offset += voice_in_size; |
||||
|
|
||||
|
// Set all voices to not be in use
|
||||
|
for (std::size_t i = 0; i < voice_count; i++) { |
||||
|
voice_context.GetInfo(i).GetInParams().in_use = false; |
||||
|
} |
||||
|
|
||||
|
// Update our voices
|
||||
|
for (std::size_t i = 0; i < voice_count; i++) { |
||||
|
auto& in_params = voice_in[i]; |
||||
|
const auto channel_count = static_cast<std::size_t>(in_params.channel_count); |
||||
|
// Skip if it's not currently in use
|
||||
|
if (!in_params.is_in_use) { |
||||
|
continue; |
||||
|
} |
||||
|
// Voice states for each channel
|
||||
|
std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT> voice_states{}; |
||||
|
ASSERT(in_params.id < voice_count); |
||||
|
|
||||
|
// Grab our current voice info
|
||||
|
auto& voice_info = voice_context.GetInfo(static_cast<std::size_t>(in_params.id)); |
||||
|
|
||||
|
ASSERT(channel_count <= AudioCommon::MAX_CHANNEL_COUNT); |
||||
|
|
||||
|
// Get all our channel voice states
|
||||
|
for (std::size_t channel = 0; channel < channel_count; channel++) { |
||||
|
voice_states[channel] = |
||||
|
&voice_context.GetState(in_params.voice_channel_resource_ids[channel]); |
||||
|
} |
||||
|
|
||||
|
if (in_params.is_new) { |
||||
|
// Default our values for our voice
|
||||
|
voice_info.Initialize(); |
||||
|
if (channel_count == 0 || channel_count > AudioCommon::MAX_CHANNEL_COUNT) { |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
// Zero out our voice states
|
||||
|
for (std::size_t channel = 0; channel < channel_count; channel++) { |
||||
|
std::memset(voice_states[channel], 0, sizeof(VoiceState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// Update our voice
|
||||
|
voice_info.UpdateParameters(in_params, behavior_info); |
||||
|
// TODO(ogniK): Handle mapping errors with behavior info based on in params response
|
||||
|
|
||||
|
// Update our wave buffers
|
||||
|
voice_info.UpdateWaveBuffers(in_params, voice_states, behavior_info); |
||||
|
voice_info.WriteOutStatus(voice_out[i], in_params, voice_states); |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(out_params.size(), output_offset, voice_out_size)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
std::memcpy(out_params.data() + output_offset, voice_out.data(), voice_out_size); |
||||
|
output_offset += voice_out_size; |
||||
|
output_header.size.voice = static_cast<u32>(voice_out_size); |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::UpdateEffects(EffectContext& effect_context, bool is_active) { |
||||
|
const auto effect_count = effect_context.GetCount(); |
||||
|
std::vector<EffectInfo::InParams> effect_in(effect_count); |
||||
|
std::vector<EffectInfo::OutParams> effect_out(effect_count); |
||||
|
|
||||
|
const auto total_effect_in = effect_count * sizeof(EffectInfo::InParams); |
||||
|
const auto total_effect_out = effect_count * sizeof(EffectInfo::OutParams); |
||||
|
|
||||
|
if (input_header.size.effect != total_effect_in) { |
||||
|
LOG_ERROR(Audio, "Effects are an invalid size, expecting 0x{:X} but got 0x{:X}", |
||||
|
total_effect_in, input_header.size.effect); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(in_params.size(), input_offset, total_effect_in)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
std::memcpy(effect_in.data(), in_params.data() + input_offset, total_effect_in); |
||||
|
input_offset += total_effect_in; |
||||
|
|
||||
|
// Update effects
|
||||
|
for (std::size_t i = 0; i < effect_count; i++) { |
||||
|
auto* info = effect_context.GetInfo(i); |
||||
|
info->Update(effect_in[i]); |
||||
|
|
||||
|
// TODO(ogniK): Update individual effects
|
||||
|
if ((!is_active && info->GetUsage() != UsageStatus::New) || |
||||
|
info->GetUsage() == UsageStatus::Removed) { |
||||
|
effect_out[i].status = UsageStatus::Removed; |
||||
|
} else if (info->GetUsage() == UsageStatus::New) { |
||||
|
effect_out[i].status = UsageStatus::New; |
||||
|
} else { |
||||
|
effect_out[i].status = UsageStatus::Used; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(out_params.size(), output_offset, total_effect_out)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
std::memcpy(out_params.data() + output_offset, effect_out.data(), total_effect_out); |
||||
|
output_offset += total_effect_out; |
||||
|
output_header.size.effect = static_cast<u32>(total_effect_out); |
||||
|
|
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::UpdateSplitterInfo(SplitterContext& splitter_context) { |
||||
|
std::size_t start_offset = input_offset; |
||||
|
std::size_t bytes_read{}; |
||||
|
// Update splitter context
|
||||
|
if (!splitter_context.Update(in_params, input_offset, bytes_read)) { |
||||
|
LOG_ERROR(Audio, "Failed to update splitter context!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
const auto consumed = input_offset - start_offset; |
||||
|
|
||||
|
if (input_header.size.splitter != consumed) { |
||||
|
LOG_ERROR(Audio, "Splitters is an invalid size, expecting 0x{:X} but got 0x{:X}", |
||||
|
bytes_read, input_header.size.splitter); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
ResultCode InfoUpdater::UpdateMixes(MixContext& mix_context, std::size_t mix_buffer_count, |
||||
|
SplitterContext& splitter_context) { |
||||
|
std::vector<MixInfo::InParams> mix_in_params; |
||||
|
|
||||
|
if (!behavior_info.IsMixInParameterDirtyOnlyUpdateSupported()) { |
||||
|
// If we're not dirty, get ALL mix in parameters
|
||||
|
const auto context_mix_count = mix_context.GetCount(); |
||||
|
const auto total_mix_in = context_mix_count * sizeof(MixInfo::InParams); |
||||
|
if (input_header.size.mixer != total_mix_in) { |
||||
|
LOG_ERROR(Audio, "Mixer is an invalid size, expecting 0x{:X} but got 0x{:X}", |
||||
|
total_mix_in, input_header.size.mixer); |
||||
|
return AudioCommon::Audren::ERR_INVALID_PARAMETERS; |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(in_params.size(), input_offset, total_mix_in)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return AudioCommon::Audren::ERR_INVALID_PARAMETERS; |
||||
|
} |
||||
|
|
||||
|
mix_in_params.resize(context_mix_count); |
||||
|
std::memcpy(mix_in_params.data(), in_params.data() + input_offset, total_mix_in); |
||||
|
|
||||
|
input_offset += total_mix_in; |
||||
|
} else { |
||||
|
// Only update the "dirty" mixes
|
||||
|
MixInfo::DirtyHeader dirty_header{}; |
||||
|
if (!AudioCommon::CanConsumeBuffer(in_params.size(), input_offset, |
||||
|
sizeof(MixInfo::DirtyHeader))) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return AudioCommon::Audren::ERR_INVALID_PARAMETERS; |
||||
|
} |
||||
|
|
||||
|
std::memcpy(&dirty_header, in_params.data() + input_offset, sizeof(MixInfo::DirtyHeader)); |
||||
|
input_offset += sizeof(MixInfo::DirtyHeader); |
||||
|
|
||||
|
const auto total_mix_in = |
||||
|
dirty_header.mixer_count * sizeof(MixInfo::InParams) + sizeof(MixInfo::DirtyHeader); |
||||
|
|
||||
|
if (input_header.size.mixer != total_mix_in) { |
||||
|
LOG_ERROR(Audio, "Mixer is an invalid size, expecting 0x{:X} but got 0x{:X}", |
||||
|
total_mix_in, input_header.size.mixer); |
||||
|
return AudioCommon::Audren::ERR_INVALID_PARAMETERS; |
||||
|
} |
||||
|
|
||||
|
if (dirty_header.mixer_count != 0) { |
||||
|
mix_in_params.resize(dirty_header.mixer_count); |
||||
|
std::memcpy(mix_in_params.data(), in_params.data() + input_offset, |
||||
|
mix_in_params.size() * sizeof(MixInfo::InParams)); |
||||
|
input_offset += mix_in_params.size() * sizeof(MixInfo::InParams); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// Get our total input count
|
||||
|
const auto mix_count = mix_in_params.size(); |
||||
|
|
||||
|
if (!behavior_info.IsMixInParameterDirtyOnlyUpdateSupported()) { |
||||
|
// Only verify our buffer count if we're not dirty
|
||||
|
std::size_t total_buffer_count{}; |
||||
|
for (std::size_t i = 0; i < mix_count; i++) { |
||||
|
const auto& in = mix_in_params[i]; |
||||
|
total_buffer_count += in.buffer_count; |
||||
|
if (in.dest_mix_id > mix_count && in.dest_mix_id != AudioCommon::NO_MIX && |
||||
|
in.mix_id != AudioCommon::FINAL_MIX) { |
||||
|
LOG_ERROR( |
||||
|
Audio, |
||||
|
"Invalid mix destination, mix_id={:X}, dest_mix_id={:X}, mix_buffer_count={:X}", |
||||
|
in.mix_id, in.dest_mix_id, mix_buffer_count); |
||||
|
return AudioCommon::Audren::ERR_INVALID_PARAMETERS; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if (total_buffer_count > mix_buffer_count) { |
||||
|
LOG_ERROR(Audio, |
||||
|
"Too many mix buffers used! mix_buffer_count={:X}, requesting_buffers={:X}", |
||||
|
mix_buffer_count, total_buffer_count); |
||||
|
return AudioCommon::Audren::ERR_INVALID_PARAMETERS; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if (mix_buffer_count == 0) { |
||||
|
LOG_ERROR(Audio, "No mix buffers!"); |
||||
|
return AudioCommon::Audren::ERR_INVALID_PARAMETERS; |
||||
|
} |
||||
|
|
||||
|
bool should_sort = false; |
||||
|
for (std::size_t i = 0; i < mix_count; i++) { |
||||
|
const auto& mix_in = mix_in_params[i]; |
||||
|
std::size_t target_mix{}; |
||||
|
if (behavior_info.IsMixInParameterDirtyOnlyUpdateSupported()) { |
||||
|
target_mix = mix_in.mix_id; |
||||
|
} else { |
||||
|
// Non dirty supported games just use i instead of the actual mix_id
|
||||
|
target_mix = i; |
||||
|
} |
||||
|
auto& mix_info = mix_context.GetInfo(target_mix); |
||||
|
auto& mix_info_params = mix_info.GetInParams(); |
||||
|
if (mix_info_params.in_use != mix_in.in_use) { |
||||
|
mix_info_params.in_use = mix_in.in_use; |
||||
|
// TODO(ogniK): Update effect processing order
|
||||
|
should_sort = true; |
||||
|
} |
||||
|
|
||||
|
if (mix_in.in_use) { |
||||
|
should_sort |= mix_info.Update(mix_context.GetEdgeMatrix(), mix_in, behavior_info, |
||||
|
splitter_context); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if (should_sort && behavior_info.IsSplitterSupported()) { |
||||
|
// Sort our splitter data
|
||||
|
if (!mix_context.TsortInfo(splitter_context)) { |
||||
|
return AudioCommon::Audren::ERR_SPLITTER_SORT_FAILED; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// TODO(ogniK): Sort when splitter is suppoorted
|
||||
|
|
||||
|
return RESULT_SUCCESS; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::UpdateSinks(SinkContext& sink_context) { |
||||
|
const auto sink_count = sink_context.GetCount(); |
||||
|
std::vector<SinkInfo::InParams> sink_in_params(sink_count); |
||||
|
const auto total_sink_in = sink_count * sizeof(SinkInfo::InParams); |
||||
|
|
||||
|
if (input_header.size.sink != total_sink_in) { |
||||
|
LOG_ERROR(Audio, "Sinks are an invalid size, expecting 0x{:X} but got 0x{:X}", |
||||
|
total_sink_in, input_header.size.effect); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(in_params.size(), input_offset, total_sink_in)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
std::memcpy(sink_in_params.data(), in_params.data() + input_offset, total_sink_in); |
||||
|
input_offset += total_sink_in; |
||||
|
|
||||
|
// TODO(ogniK): Properly update sinks
|
||||
|
if (!sink_in_params.empty()) { |
||||
|
sink_context.UpdateMainSink(sink_in_params[0]); |
||||
|
} |
||||
|
|
||||
|
output_header.size.sink = static_cast<u32>(0x20 * sink_count); |
||||
|
output_offset += 0x20 * sink_count; |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::UpdatePerformanceBuffer() { |
||||
|
output_header.size.performance = 0x10; |
||||
|
output_offset += 0x10; |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::UpdateErrorInfo(BehaviorInfo& in_behavior_info) { |
||||
|
const auto total_beahvior_info_out = sizeof(BehaviorInfo::OutParams); |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(out_params.size(), output_offset, total_beahvior_info_out)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
BehaviorInfo::OutParams behavior_info_out{}; |
||||
|
behavior_info.CopyErrorInfo(behavior_info_out); |
||||
|
|
||||
|
std::memcpy(out_params.data() + output_offset, &behavior_info_out, total_beahvior_info_out); |
||||
|
output_offset += total_beahvior_info_out; |
||||
|
output_header.size.behavior = total_beahvior_info_out; |
||||
|
|
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
struct RendererInfo { |
||||
|
u64_le elasped_frame_count{}; |
||||
|
INSERT_PADDING_WORDS(2); |
||||
|
}; |
||||
|
static_assert(sizeof(RendererInfo) == 0x10, "RendererInfo is an invalid size"); |
||||
|
|
||||
|
bool InfoUpdater::UpdateRendererInfo(std::size_t elapsed_frame_count) { |
||||
|
const auto total_renderer_info_out = sizeof(RendererInfo); |
||||
|
if (!AudioCommon::CanConsumeBuffer(out_params.size(), output_offset, total_renderer_info_out)) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
RendererInfo out{}; |
||||
|
out.elasped_frame_count = elapsed_frame_count; |
||||
|
std::memcpy(out_params.data() + output_offset, &out, total_renderer_info_out); |
||||
|
output_offset += total_renderer_info_out; |
||||
|
output_header.size.render_info = total_renderer_info_out; |
||||
|
|
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::CheckConsumedSize() const { |
||||
|
if (output_offset != out_params.size()) { |
||||
|
LOG_ERROR(Audio, "Output is not consumed! Consumed {}, but requires {}. {} bytes remaining", |
||||
|
output_offset, out_params.size(), out_params.size() - output_offset); |
||||
|
return false; |
||||
|
} |
||||
|
/*if (input_offset != in_params.size()) {
|
||||
|
LOG_ERROR(Audio, "Input is not consumed!"); |
||||
|
return false; |
||||
|
}*/ |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool InfoUpdater::WriteOutputHeader() { |
||||
|
if (!AudioCommon::CanConsumeBuffer(out_params.size(), 0, |
||||
|
sizeof(AudioCommon::UpdateDataHeader))) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
output_header.revision = AudioCommon::CURRENT_PROCESS_REVISION; |
||||
|
const auto& sz = output_header.size; |
||||
|
output_header.total_size += sz.behavior + sz.memory_pool + sz.voice + |
||||
|
sz.voice_channel_resource + sz.effect + sz.mixer + sz.sink + |
||||
|
sz.performance + sz.splitter + sz.render_info; |
||||
|
|
||||
|
std::memcpy(out_params.data(), &output_header, sizeof(AudioCommon::UpdateDataHeader)); |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
} // namespace AudioCore
|
||||
@ -0,0 +1,58 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include <vector> |
||||
|
#include "audio_core/common.h" |
||||
|
#include "common/common_types.h" |
||||
|
|
||||
|
namespace AudioCore { |
||||
|
|
||||
|
class BehaviorInfo; |
||||
|
class ServerMemoryPoolInfo; |
||||
|
class VoiceContext; |
||||
|
class EffectContext; |
||||
|
class MixContext; |
||||
|
class SinkContext; |
||||
|
class SplitterContext; |
||||
|
|
||||
|
class InfoUpdater { |
||||
|
public: |
||||
|
// TODO(ogniK): Pass process handle when we support it |
||||
|
InfoUpdater(const std::vector<u8>& in_params, std::vector<u8>& out_params, |
||||
|
BehaviorInfo& behavior_info); |
||||
|
~InfoUpdater(); |
||||
|
|
||||
|
bool UpdateBehaviorInfo(BehaviorInfo& in_behavior_info); |
||||
|
bool UpdateMemoryPools(std::vector<ServerMemoryPoolInfo>& memory_pool_info); |
||||
|
bool UpdateVoiceChannelResources(VoiceContext& voice_context); |
||||
|
bool UpdateVoices(VoiceContext& voice_context, |
||||
|
std::vector<ServerMemoryPoolInfo>& memory_pool_info, |
||||
|
VAddr audio_codec_dsp_addr); |
||||
|
bool UpdateEffects(EffectContext& effect_context, bool is_active); |
||||
|
bool UpdateSplitterInfo(SplitterContext& splitter_context); |
||||
|
ResultCode UpdateMixes(MixContext& mix_context, std::size_t mix_buffer_count, |
||||
|
SplitterContext& splitter_context); |
||||
|
bool UpdateSinks(SinkContext& sink_context); |
||||
|
bool UpdatePerformanceBuffer(); |
||||
|
bool UpdateErrorInfo(BehaviorInfo& in_behavior_info); |
||||
|
bool UpdateRendererInfo(std::size_t elapsed_frame_count); |
||||
|
bool CheckConsumedSize() const; |
||||
|
|
||||
|
bool WriteOutputHeader(); |
||||
|
|
||||
|
private: |
||||
|
const std::vector<u8>& in_params; |
||||
|
std::vector<u8>& out_params; |
||||
|
BehaviorInfo& behavior_info; |
||||
|
|
||||
|
AudioCommon::UpdateDataHeader input_header{}; |
||||
|
AudioCommon::UpdateDataHeader output_header{}; |
||||
|
|
||||
|
std::size_t input_offset{sizeof(AudioCommon::UpdateDataHeader)}; |
||||
|
std::size_t output_offset{sizeof(AudioCommon::UpdateDataHeader)}; |
||||
|
}; |
||||
|
|
||||
|
} // namespace AudioCore |
||||
@ -0,0 +1,62 @@ |
|||||
|
|
||||
|
// Copyright 2020 yuzu Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "audio_core/memory_pool.h"
|
||||
|
#include "common/logging/log.h"
|
||||
|
|
||||
|
namespace AudioCore { |
||||
|
|
||||
|
ServerMemoryPoolInfo::ServerMemoryPoolInfo() = default; |
||||
|
ServerMemoryPoolInfo::~ServerMemoryPoolInfo() = default; |
||||
|
bool ServerMemoryPoolInfo::Update(const ServerMemoryPoolInfo::InParams& in_params, |
||||
|
ServerMemoryPoolInfo::OutParams& out_params) { |
||||
|
// Our state does not need to be changed
|
||||
|
if (in_params.state != ServerMemoryPoolInfo::State::RequestAttach && |
||||
|
in_params.state != ServerMemoryPoolInfo::State::RequestDetach) { |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
// Address or size is null
|
||||
|
if (in_params.address == 0 || in_params.size == 0) { |
||||
|
LOG_ERROR(Audio, "Memory pool address or size is zero! address={:X}, size={:X}", |
||||
|
in_params.address, in_params.size); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
// Address or size is not aligned
|
||||
|
if ((in_params.address % 0x1000) != 0 || (in_params.size % 0x1000) != 0) { |
||||
|
LOG_ERROR(Audio, "Memory pool address or size is not aligned! address={:X}, size={:X}", |
||||
|
in_params.address, in_params.size); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
if (in_params.state == ServerMemoryPoolInfo::State::RequestAttach) { |
||||
|
cpu_address = in_params.address; |
||||
|
size = in_params.size; |
||||
|
used = true; |
||||
|
out_params.state = ServerMemoryPoolInfo::State::Attached; |
||||
|
} else { |
||||
|
// Unexpected address
|
||||
|
if (cpu_address != in_params.address) { |
||||
|
LOG_ERROR(Audio, "Memory pool address differs! Expecting {:X} but address is {:X}", |
||||
|
cpu_address, in_params.address); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
if (size != in_params.size) { |
||||
|
LOG_ERROR(Audio, "Memory pool size differs! Expecting {:X} but size is {:X}", size, |
||||
|
in_params.size); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
cpu_address = 0; |
||||
|
size = 0; |
||||
|
used = false; |
||||
|
out_params.state = ServerMemoryPoolInfo::State::Detached; |
||||
|
} |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
} // namespace AudioCore
|
||||
@ -0,0 +1,53 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include "common/common_funcs.h" |
||||
|
#include "common/common_types.h" |
||||
|
#include "common/swap.h" |
||||
|
|
||||
|
namespace AudioCore { |
||||
|
|
||||
|
class ServerMemoryPoolInfo { |
||||
|
public: |
||||
|
ServerMemoryPoolInfo(); |
||||
|
~ServerMemoryPoolInfo(); |
||||
|
|
||||
|
enum class State : u32_le { |
||||
|
Invalid = 0x0, |
||||
|
Aquired = 0x1, |
||||
|
RequestDetach = 0x2, |
||||
|
Detached = 0x3, |
||||
|
RequestAttach = 0x4, |
||||
|
Attached = 0x5, |
||||
|
Released = 0x6, |
||||
|
}; |
||||
|
|
||||
|
struct InParams { |
||||
|
u64_le address{}; |
||||
|
u64_le size{}; |
||||
|
ServerMemoryPoolInfo::State state{}; |
||||
|
INSERT_PADDING_WORDS(3); |
||||
|
}; |
||||
|
static_assert(sizeof(ServerMemoryPoolInfo::InParams) == 0x20, "InParams are an invalid size"); |
||||
|
|
||||
|
struct OutParams { |
||||
|
ServerMemoryPoolInfo::State state{}; |
||||
|
INSERT_PADDING_WORDS(3); |
||||
|
}; |
||||
|
static_assert(sizeof(ServerMemoryPoolInfo::OutParams) == 0x10, "OutParams are an invalid size"); |
||||
|
|
||||
|
bool Update(const ServerMemoryPoolInfo::InParams& in_params, |
||||
|
ServerMemoryPoolInfo::OutParams& out_params); |
||||
|
|
||||
|
private: |
||||
|
// There's another entry here which is the DSP address, however since we're not talking to the |
||||
|
// DSP we can just use the same address provided by the guest without needing to remap |
||||
|
u64_le cpu_address{}; |
||||
|
u64_le size{}; |
||||
|
bool used{}; |
||||
|
}; |
||||
|
|
||||
|
} // namespace AudioCore |
||||
@ -0,0 +1,264 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "audio_core/behavior_info.h"
|
||||
|
#include "audio_core/common.h"
|
||||
|
#include "audio_core/mix_context.h"
|
||||
|
#include "audio_core/splitter_context.h"
|
||||
|
|
||||
|
namespace AudioCore { |
||||
|
MixContext::MixContext() = default; |
||||
|
MixContext::~MixContext() = default; |
||||
|
|
||||
|
void MixContext::Initialize(const BehaviorInfo& behavior_info, std::size_t mix_count) { |
||||
|
info_count = mix_count; |
||||
|
infos.resize(info_count); |
||||
|
auto& final_mix = GetInfo(AudioCommon::FINAL_MIX); |
||||
|
final_mix.GetInParams().mix_id = AudioCommon::FINAL_MIX; |
||||
|
for (auto& info : infos) { |
||||
|
sorted_info.push_back(&info); |
||||
|
} |
||||
|
|
||||
|
// Only initialize our edge matrix and node states if splitters are supported
|
||||
|
if (behavior_info.IsSplitterSupported()) { |
||||
|
node_states.Initialize(mix_count); |
||||
|
edge_matrix.Initialize(mix_count); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void MixContext::UpdateDistancesFromFinalMix() { |
||||
|
// Set all distances to be invalid
|
||||
|
for (std::size_t i = 0; i < info_count; i++) { |
||||
|
GetInfo(i).GetInParams().final_mix_distance = AudioCommon::NO_FINAL_MIX; |
||||
|
} |
||||
|
|
||||
|
for (std::size_t i = 0; i < info_count; i++) { |
||||
|
auto& info = GetInfo(i); |
||||
|
auto& in_params = info.GetInParams(); |
||||
|
// Populate our sorted info
|
||||
|
sorted_info[i] = &info; |
||||
|
|
||||
|
if (!in_params.in_use) { |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
auto mix_id = in_params.mix_id; |
||||
|
// Needs to be referenced out of scope
|
||||
|
s32 distance_to_final_mix{AudioCommon::FINAL_MIX}; |
||||
|
for (; distance_to_final_mix < info_count; distance_to_final_mix++) { |
||||
|
if (mix_id == AudioCommon::FINAL_MIX) { |
||||
|
// If we're at the final mix, we're done
|
||||
|
break; |
||||
|
} else if (mix_id == AudioCommon::NO_MIX) { |
||||
|
// If we have no more mix ids, we're done
|
||||
|
distance_to_final_mix = AudioCommon::NO_FINAL_MIX; |
||||
|
break; |
||||
|
} else { |
||||
|
const auto& dest_mix = GetInfo(mix_id); |
||||
|
const auto dest_mix_distance = dest_mix.GetInParams().final_mix_distance; |
||||
|
|
||||
|
if (dest_mix_distance == AudioCommon::NO_FINAL_MIX) { |
||||
|
// If our current mix isn't pointing to a final mix, follow through
|
||||
|
mix_id = dest_mix.GetInParams().dest_mix_id; |
||||
|
} else { |
||||
|
// Our current mix + 1 = final distance
|
||||
|
distance_to_final_mix = dest_mix_distance + 1; |
||||
|
break; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// If we're out of range for our distance, mark it as no final mix
|
||||
|
if (distance_to_final_mix >= info_count) { |
||||
|
distance_to_final_mix = AudioCommon::NO_FINAL_MIX; |
||||
|
} |
||||
|
|
||||
|
in_params.final_mix_distance = distance_to_final_mix; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void MixContext::CalcMixBufferOffset() { |
||||
|
s32 offset{}; |
||||
|
for (std::size_t i = 0; i < info_count; i++) { |
||||
|
auto& info = GetSortedInfo(i); |
||||
|
auto& in_params = info.GetInParams(); |
||||
|
if (in_params.in_use) { |
||||
|
// Only update if in use
|
||||
|
in_params.buffer_offset = offset; |
||||
|
offset += in_params.buffer_count; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void MixContext::SortInfo() { |
||||
|
// Get the distance to the final mix
|
||||
|
UpdateDistancesFromFinalMix(); |
||||
|
|
||||
|
// Sort based on the distance to the final mix
|
||||
|
std::sort(sorted_info.begin(), sorted_info.end(), |
||||
|
[](const ServerMixInfo* lhs, const ServerMixInfo* rhs) { |
||||
|
return lhs->GetInParams().final_mix_distance > |
||||
|
rhs->GetInParams().final_mix_distance; |
||||
|
}); |
||||
|
|
||||
|
// Calculate the mix buffer offset
|
||||
|
CalcMixBufferOffset(); |
||||
|
} |
||||
|
|
||||
|
bool MixContext::TsortInfo(SplitterContext& splitter_context) { |
||||
|
// If we're not using mixes, just calculate the mix buffer offset
|
||||
|
if (!splitter_context.UsingSplitter()) { |
||||
|
CalcMixBufferOffset(); |
||||
|
return true; |
||||
|
} |
||||
|
// Sort our node states
|
||||
|
if (!node_states.Tsort(edge_matrix)) { |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
// Get our sorted list
|
||||
|
const auto sorted_list = node_states.GetIndexList(); |
||||
|
std::size_t info_id{}; |
||||
|
for (auto itr = sorted_list.rbegin(); itr != sorted_list.rend(); ++itr) { |
||||
|
// Set our sorted info
|
||||
|
sorted_info[info_id++] = &GetInfo(*itr); |
||||
|
} |
||||
|
|
||||
|
// Calculate the mix buffer offset
|
||||
|
CalcMixBufferOffset(); |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
std::size_t MixContext::GetCount() const { |
||||
|
return info_count; |
||||
|
} |
||||
|
|
||||
|
ServerMixInfo& MixContext::GetInfo(std::size_t i) { |
||||
|
ASSERT(i < info_count); |
||||
|
return infos.at(i); |
||||
|
} |
||||
|
|
||||
|
const ServerMixInfo& MixContext::GetInfo(std::size_t i) const { |
||||
|
ASSERT(i < info_count); |
||||
|
return infos.at(i); |
||||
|
} |
||||
|
|
||||
|
ServerMixInfo& MixContext::GetSortedInfo(std::size_t i) { |
||||
|
ASSERT(i < info_count); |
||||
|
return *sorted_info.at(i); |
||||
|
} |
||||
|
|
||||
|
const ServerMixInfo& MixContext::GetSortedInfo(std::size_t i) const { |
||||
|
ASSERT(i < info_count); |
||||
|
return *sorted_info.at(i); |
||||
|
} |
||||
|
|
||||
|
ServerMixInfo& MixContext::GetFinalMixInfo() { |
||||
|
return infos.at(AudioCommon::FINAL_MIX); |
||||
|
} |
||||
|
|
||||
|
const ServerMixInfo& MixContext::GetFinalMixInfo() const { |
||||
|
return infos.at(AudioCommon::FINAL_MIX); |
||||
|
} |
||||
|
|
||||
|
EdgeMatrix& MixContext::GetEdgeMatrix() { |
||||
|
return edge_matrix; |
||||
|
} |
||||
|
|
||||
|
const EdgeMatrix& MixContext::GetEdgeMatrix() const { |
||||
|
return edge_matrix; |
||||
|
} |
||||
|
|
||||
|
ServerMixInfo::ServerMixInfo() { |
||||
|
Cleanup(); |
||||
|
} |
||||
|
ServerMixInfo::~ServerMixInfo() = default; |
||||
|
|
||||
|
const ServerMixInfo::InParams& ServerMixInfo::GetInParams() const { |
||||
|
return in_params; |
||||
|
} |
||||
|
|
||||
|
ServerMixInfo::InParams& ServerMixInfo::GetInParams() { |
||||
|
return in_params; |
||||
|
} |
||||
|
|
||||
|
bool ServerMixInfo::Update(EdgeMatrix& edge_matrix, const MixInfo::InParams& mix_in, |
||||
|
BehaviorInfo& behavior_info, SplitterContext& splitter_context) { |
||||
|
in_params.volume = mix_in.volume; |
||||
|
in_params.sample_rate = mix_in.sample_rate; |
||||
|
in_params.buffer_count = mix_in.buffer_count; |
||||
|
in_params.in_use = mix_in.in_use; |
||||
|
in_params.mix_id = mix_in.mix_id; |
||||
|
in_params.node_id = mix_in.node_id; |
||||
|
for (std::size_t i = 0; i < mix_in.mix_volume.size(); i++) { |
||||
|
std::copy(mix_in.mix_volume[i].begin(), mix_in.mix_volume[i].end(), |
||||
|
in_params.mix_volume[i].begin()); |
||||
|
} |
||||
|
|
||||
|
bool require_sort = false; |
||||
|
|
||||
|
if (behavior_info.IsSplitterSupported()) { |
||||
|
require_sort = UpdateConnection(edge_matrix, mix_in, splitter_context); |
||||
|
} else { |
||||
|
in_params.dest_mix_id = mix_in.dest_mix_id; |
||||
|
in_params.splitter_id = AudioCommon::NO_SPLITTER; |
||||
|
} |
||||
|
|
||||
|
// TODO(ogniK): Update effect processing order
|
||||
|
return require_sort; |
||||
|
} |
||||
|
|
||||
|
bool ServerMixInfo::HasAnyConnection() const { |
||||
|
return in_params.splitter_id != AudioCommon::NO_SPLITTER || |
||||
|
in_params.mix_id != AudioCommon::NO_MIX; |
||||
|
} |
||||
|
|
||||
|
void ServerMixInfo::Cleanup() { |
||||
|
in_params.volume = 0.0f; |
||||
|
in_params.sample_rate = 0; |
||||
|
in_params.buffer_count = 0; |
||||
|
in_params.in_use = false; |
||||
|
in_params.mix_id = AudioCommon::NO_MIX; |
||||
|
in_params.node_id = 0; |
||||
|
in_params.buffer_offset = 0; |
||||
|
in_params.dest_mix_id = AudioCommon::NO_MIX; |
||||
|
in_params.splitter_id = AudioCommon::NO_SPLITTER; |
||||
|
std::memset(in_params.mix_volume.data(), 0, sizeof(float) * in_params.mix_volume.size()); |
||||
|
} |
||||
|
|
||||
|
bool ServerMixInfo::UpdateConnection(EdgeMatrix& edge_matrix, const MixInfo::InParams& mix_in, |
||||
|
SplitterContext& splitter_context) { |
||||
|
// Mixes are identical
|
||||
|
if (in_params.dest_mix_id == mix_in.dest_mix_id && |
||||
|
in_params.splitter_id == mix_in.splitter_id && |
||||
|
((in_params.splitter_id == AudioCommon::NO_SPLITTER) || |
||||
|
!splitter_context.GetInfo(in_params.splitter_id).HasNewConnection())) { |
||||
|
return false; |
||||
|
} |
||||
|
// Remove current edges for mix id
|
||||
|
edge_matrix.RemoveEdges(in_params.mix_id); |
||||
|
if (mix_in.dest_mix_id != AudioCommon::NO_MIX) { |
||||
|
// If we have a valid destination mix id, set our edge matrix
|
||||
|
edge_matrix.Connect(in_params.mix_id, mix_in.dest_mix_id); |
||||
|
} else if (mix_in.splitter_id != AudioCommon::NO_SPLITTER) { |
||||
|
// Recurse our splitter linked and set our edges
|
||||
|
auto& splitter_info = splitter_context.GetInfo(mix_in.splitter_id); |
||||
|
const auto length = splitter_info.GetLength(); |
||||
|
for (s32 i = 0; i < length; i++) { |
||||
|
const auto* splitter_destination = |
||||
|
splitter_context.GetDestinationData(mix_in.splitter_id, i); |
||||
|
if (splitter_destination == nullptr) { |
||||
|
continue; |
||||
|
} |
||||
|
if (splitter_destination->ValidMixId()) { |
||||
|
edge_matrix.Connect(in_params.mix_id, splitter_destination->GetMixId()); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
in_params.dest_mix_id = mix_in.dest_mix_id; |
||||
|
in_params.splitter_id = mix_in.splitter_id; |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
} // namespace AudioCore
|
||||
@ -0,0 +1,107 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include <array> |
||||
|
#include <vector> |
||||
|
#include "audio_core/common.h" |
||||
|
#include "audio_core/splitter_context.h" |
||||
|
#include "common/common_funcs.h" |
||||
|
#include "common/common_types.h" |
||||
|
|
||||
|
namespace AudioCore { |
||||
|
class BehaviorInfo; |
||||
|
|
||||
|
class MixInfo { |
||||
|
public: |
||||
|
struct DirtyHeader { |
||||
|
u32_le magic{}; |
||||
|
u32_le mixer_count{}; |
||||
|
INSERT_PADDING_BYTES(0x18); |
||||
|
}; |
||||
|
static_assert(sizeof(DirtyHeader) == 0x20, "MixInfo::DirtyHeader is an invalid size"); |
||||
|
|
||||
|
struct InParams { |
||||
|
float_le volume{}; |
||||
|
s32_le sample_rate{}; |
||||
|
s32_le buffer_count{}; |
||||
|
bool in_use{}; |
||||
|
INSERT_PADDING_BYTES(3); |
||||
|
s32_le mix_id{}; |
||||
|
s32_le effect_count{}; |
||||
|
u32_le node_id{}; |
||||
|
INSERT_PADDING_WORDS(2); |
||||
|
std::array<std::array<float_le, AudioCommon::MAX_MIX_BUFFERS>, AudioCommon::MAX_MIX_BUFFERS> |
||||
|
mix_volume{}; |
||||
|
s32_le dest_mix_id{}; |
||||
|
s32_le splitter_id{}; |
||||
|
INSERT_PADDING_WORDS(1); |
||||
|
}; |
||||
|
static_assert(sizeof(MixInfo::InParams) == 0x930, "MixInfo::InParams is an invalid size"); |
||||
|
}; |
||||
|
|
||||
|
class ServerMixInfo { |
||||
|
public: |
||||
|
struct InParams { |
||||
|
float volume{}; |
||||
|
s32 sample_rate{}; |
||||
|
s32 buffer_count{}; |
||||
|
bool in_use{}; |
||||
|
s32 mix_id{}; |
||||
|
u32 node_id{}; |
||||
|
std::array<std::array<float_le, AudioCommon::MAX_MIX_BUFFERS>, AudioCommon::MAX_MIX_BUFFERS> |
||||
|
mix_volume{}; |
||||
|
s32 dest_mix_id{}; |
||||
|
s32 splitter_id{}; |
||||
|
s32 buffer_offset{}; |
||||
|
s32 final_mix_distance{}; |
||||
|
}; |
||||
|
ServerMixInfo(); |
||||
|
~ServerMixInfo(); |
||||
|
|
||||
|
const ServerMixInfo::InParams& GetInParams() const; |
||||
|
ServerMixInfo::InParams& GetInParams(); |
||||
|
|
||||
|
bool Update(EdgeMatrix& edge_matrix, const MixInfo::InParams& mix_in, |
||||
|
BehaviorInfo& behavior_info, SplitterContext& splitter_context); |
||||
|
bool HasAnyConnection() const; |
||||
|
void Cleanup(); |
||||
|
|
||||
|
private: |
||||
|
InParams in_params{}; |
||||
|
bool UpdateConnection(EdgeMatrix& edge_matrix, const MixInfo::InParams& mix_in, |
||||
|
SplitterContext& splitter_context); |
||||
|
}; |
||||
|
|
||||
|
class MixContext { |
||||
|
public: |
||||
|
MixContext(); |
||||
|
~MixContext(); |
||||
|
|
||||
|
void Initialize(const BehaviorInfo& behavior_info, std::size_t mix_count); |
||||
|
void SortInfo(); |
||||
|
bool TsortInfo(SplitterContext& splitter_context); |
||||
|
|
||||
|
std::size_t GetCount() const; |
||||
|
ServerMixInfo& GetInfo(std::size_t i); |
||||
|
const ServerMixInfo& GetInfo(std::size_t i) const; |
||||
|
ServerMixInfo& GetSortedInfo(std::size_t i); |
||||
|
const ServerMixInfo& GetSortedInfo(std::size_t i) const; |
||||
|
ServerMixInfo& GetFinalMixInfo(); |
||||
|
const ServerMixInfo& GetFinalMixInfo() const; |
||||
|
EdgeMatrix& GetEdgeMatrix(); |
||||
|
const EdgeMatrix& GetEdgeMatrix() const; |
||||
|
|
||||
|
private: |
||||
|
void CalcMixBufferOffset(); |
||||
|
void UpdateDistancesFromFinalMix(); |
||||
|
|
||||
|
NodeStates node_states{}; |
||||
|
EdgeMatrix edge_matrix{}; |
||||
|
std::size_t info_count{}; |
||||
|
std::vector<ServerMixInfo> infos{}; |
||||
|
std::vector<ServerMixInfo*> sorted_info{}; |
||||
|
}; |
||||
|
} // namespace AudioCore |
||||
@ -0,0 +1,31 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "audio_core/sink_context.h"
|
||||
|
|
||||
|
namespace AudioCore { |
||||
|
SinkContext::SinkContext(std::size_t sink_count) : sink_count(sink_count) {} |
||||
|
SinkContext::~SinkContext() = default; |
||||
|
|
||||
|
std::size_t SinkContext::GetCount() const { |
||||
|
return sink_count; |
||||
|
} |
||||
|
|
||||
|
void SinkContext::UpdateMainSink(SinkInfo::InParams& in) { |
||||
|
in_use = in.in_use; |
||||
|
use_count = in.device.input_count; |
||||
|
std::memcpy(buffers.data(), in.device.input.data(), AudioCommon::MAX_CHANNEL_COUNT); |
||||
|
} |
||||
|
|
||||
|
bool SinkContext::InUse() const { |
||||
|
return in_use; |
||||
|
} |
||||
|
|
||||
|
std::vector<u8> SinkContext::OutputBuffers() const { |
||||
|
std::vector<u8> buffer_ret(use_count); |
||||
|
std::memcpy(buffer_ret.data(), buffers.data(), use_count); |
||||
|
return buffer_ret; |
||||
|
} |
||||
|
|
||||
|
} // namespace AudioCore
|
||||
@ -0,0 +1,89 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include "audio_core/common.h" |
||||
|
#include "common/common_funcs.h" |
||||
|
#include "common/common_types.h" |
||||
|
#include "common/swap.h" |
||||
|
|
||||
|
namespace AudioCore { |
||||
|
|
||||
|
enum class SinkTypes : u8 { |
||||
|
Invalid = 0, |
||||
|
Device = 1, |
||||
|
Circular = 2, |
||||
|
}; |
||||
|
|
||||
|
enum class SinkSampleFormat : u32_le { |
||||
|
None = 0, |
||||
|
Pcm8 = 1, |
||||
|
Pcm16 = 2, |
||||
|
Pcm24 = 3, |
||||
|
Pcm32 = 4, |
||||
|
PcmFloat = 5, |
||||
|
Adpcm = 6, |
||||
|
}; |
||||
|
|
||||
|
class SinkInfo { |
||||
|
public: |
||||
|
struct CircularBufferIn { |
||||
|
u64_le address; |
||||
|
u32_le size; |
||||
|
u32_le input_count; |
||||
|
u32_le sample_count; |
||||
|
u32_le previous_position; |
||||
|
SinkSampleFormat sample_format; |
||||
|
std::array<u8, AudioCommon::MAX_CHANNEL_COUNT> input; |
||||
|
bool in_use; |
||||
|
INSERT_UNION_PADDING_BYTES(5); |
||||
|
}; |
||||
|
static_assert(sizeof(SinkInfo::CircularBufferIn) == 0x28, |
||||
|
"SinkInfo::CircularBufferIn is in invalid size"); |
||||
|
|
||||
|
struct DeviceIn { |
||||
|
std::array<u8, 255> device_name; |
||||
|
INSERT_UNION_PADDING_BYTES(1); |
||||
|
s32_le input_count; |
||||
|
std::array<u8, AudioCommon::MAX_CHANNEL_COUNT> input; |
||||
|
INSERT_UNION_PADDING_BYTES(1); |
||||
|
bool down_matrix_enabled; |
||||
|
std::array<float_le, 4> down_matrix_coef; |
||||
|
}; |
||||
|
static_assert(sizeof(SinkInfo::DeviceIn) == 0x11c, "SinkInfo::DeviceIn is an invalid size"); |
||||
|
|
||||
|
struct InParams { |
||||
|
SinkTypes type{}; |
||||
|
bool in_use{}; |
||||
|
INSERT_PADDING_BYTES(2); |
||||
|
u32_le node_id{}; |
||||
|
INSERT_PADDING_WORDS(6); |
||||
|
union { |
||||
|
// std::array<u8, 0x120> raw{}; |
||||
|
SinkInfo::DeviceIn device; |
||||
|
SinkInfo::CircularBufferIn circular_buffer; |
||||
|
}; |
||||
|
}; |
||||
|
static_assert(sizeof(SinkInfo::InParams) == 0x140, "SinkInfo::InParams are an invalid size!"); |
||||
|
}; |
||||
|
|
||||
|
class SinkContext { |
||||
|
public: |
||||
|
explicit SinkContext(std::size_t sink_count); |
||||
|
~SinkContext(); |
||||
|
|
||||
|
std::size_t GetCount() const; |
||||
|
|
||||
|
void UpdateMainSink(SinkInfo::InParams& in); |
||||
|
bool InUse() const; |
||||
|
std::vector<u8> OutputBuffers() const; |
||||
|
|
||||
|
private: |
||||
|
bool in_use{false}; |
||||
|
s32 use_count{}; |
||||
|
std::array<u8, AudioCommon::MAX_CHANNEL_COUNT> buffers{}; |
||||
|
std::size_t sink_count{}; |
||||
|
}; |
||||
|
} // namespace AudioCore |
||||
@ -0,0 +1,617 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "audio_core/behavior_info.h"
|
||||
|
#include "audio_core/splitter_context.h"
|
||||
|
#include "common/alignment.h"
|
||||
|
#include "common/assert.h"
|
||||
|
#include "common/logging/log.h"
|
||||
|
|
||||
|
namespace AudioCore { |
||||
|
|
||||
|
ServerSplitterDestinationData::ServerSplitterDestinationData(s32 id) : id(id) {} |
||||
|
ServerSplitterDestinationData::~ServerSplitterDestinationData() = default; |
||||
|
|
||||
|
void ServerSplitterDestinationData::Update(SplitterInfo::InDestinationParams& header) { |
||||
|
// Log error as these are not actually failure states
|
||||
|
if (header.magic != SplitterMagic::DataHeader) { |
||||
|
LOG_ERROR(Audio, "Splitter destination header is invalid!"); |
||||
|
return; |
||||
|
} |
||||
|
|
||||
|
// Incorrect splitter id
|
||||
|
if (header.splitter_id != id) { |
||||
|
LOG_ERROR(Audio, "Splitter destination ids do not match!"); |
||||
|
return; |
||||
|
} |
||||
|
|
||||
|
mix_id = header.mix_id; |
||||
|
// Copy our mix volumes
|
||||
|
std::copy(header.mix_volumes.begin(), header.mix_volumes.end(), current_mix_volumes.begin()); |
||||
|
if (!in_use && header.in_use) { |
||||
|
// Update mix volumes
|
||||
|
std::copy(current_mix_volumes.begin(), current_mix_volumes.end(), last_mix_volumes.begin()); |
||||
|
needs_update = false; |
||||
|
} |
||||
|
in_use = header.in_use; |
||||
|
} |
||||
|
|
||||
|
ServerSplitterDestinationData* ServerSplitterDestinationData::GetNextDestination() { |
||||
|
return next; |
||||
|
} |
||||
|
|
||||
|
const ServerSplitterDestinationData* ServerSplitterDestinationData::GetNextDestination() const { |
||||
|
return next; |
||||
|
} |
||||
|
|
||||
|
void ServerSplitterDestinationData::SetNextDestination(ServerSplitterDestinationData* dest) { |
||||
|
next = dest; |
||||
|
} |
||||
|
|
||||
|
bool ServerSplitterDestinationData::ValidMixId() const { |
||||
|
return GetMixId() != AudioCommon::NO_MIX; |
||||
|
} |
||||
|
|
||||
|
s32 ServerSplitterDestinationData::GetMixId() const { |
||||
|
return mix_id; |
||||
|
} |
||||
|
|
||||
|
bool ServerSplitterDestinationData::IsConfigured() const { |
||||
|
return in_use && ValidMixId(); |
||||
|
} |
||||
|
|
||||
|
float ServerSplitterDestinationData::GetMixVolume(std::size_t i) const { |
||||
|
ASSERT(i < AudioCommon::MAX_MIX_BUFFERS); |
||||
|
return current_mix_volumes.at(i); |
||||
|
} |
||||
|
|
||||
|
const std::array<float, AudioCommon::MAX_MIX_BUFFERS>& |
||||
|
ServerSplitterDestinationData::CurrentMixVolumes() const { |
||||
|
return current_mix_volumes; |
||||
|
} |
||||
|
|
||||
|
const std::array<float, AudioCommon::MAX_MIX_BUFFERS>& |
||||
|
ServerSplitterDestinationData::LastMixVolumes() const { |
||||
|
return last_mix_volumes; |
||||
|
} |
||||
|
|
||||
|
void ServerSplitterDestinationData::MarkDirty() { |
||||
|
needs_update = true; |
||||
|
} |
||||
|
|
||||
|
void ServerSplitterDestinationData::UpdateInternalState() { |
||||
|
if (in_use && needs_update) { |
||||
|
std::copy(current_mix_volumes.begin(), current_mix_volumes.end(), last_mix_volumes.begin()); |
||||
|
} |
||||
|
needs_update = false; |
||||
|
} |
||||
|
|
||||
|
ServerSplitterInfo::ServerSplitterInfo(s32 id) : id(id) {} |
||||
|
ServerSplitterInfo::~ServerSplitterInfo() = default; |
||||
|
|
||||
|
void ServerSplitterInfo::InitializeInfos() { |
||||
|
send_length = 0; |
||||
|
head = nullptr; |
||||
|
new_connection = true; |
||||
|
} |
||||
|
|
||||
|
void ServerSplitterInfo::ClearNewConnectionFlag() { |
||||
|
new_connection = false; |
||||
|
} |
||||
|
|
||||
|
std::size_t ServerSplitterInfo::Update(SplitterInfo::InInfoPrams& header) { |
||||
|
if (header.send_id != id) { |
||||
|
return 0; |
||||
|
} |
||||
|
|
||||
|
sample_rate = header.sample_rate; |
||||
|
new_connection = true; |
||||
|
// We need to update the size here due to the splitter bug being present and providing an
|
||||
|
// incorrect size. We're suppose to also update the header here but we just ignore and continue
|
||||
|
return (sizeof(s32_le) * (header.length - 1)) + (sizeof(s32_le) * 3); |
||||
|
} |
||||
|
|
||||
|
ServerSplitterDestinationData* ServerSplitterInfo::GetHead() { |
||||
|
return head; |
||||
|
} |
||||
|
|
||||
|
const ServerSplitterDestinationData* ServerSplitterInfo::GetHead() const { |
||||
|
return head; |
||||
|
} |
||||
|
|
||||
|
ServerSplitterDestinationData* ServerSplitterInfo::GetData(std::size_t depth) { |
||||
|
auto current_head = head; |
||||
|
for (std::size_t i = 0; i < depth; i++) { |
||||
|
if (current_head == nullptr) { |
||||
|
return nullptr; |
||||
|
} |
||||
|
current_head = current_head->GetNextDestination(); |
||||
|
} |
||||
|
return current_head; |
||||
|
} |
||||
|
|
||||
|
const ServerSplitterDestinationData* ServerSplitterInfo::GetData(std::size_t depth) const { |
||||
|
auto current_head = head; |
||||
|
for (std::size_t i = 0; i < depth; i++) { |
||||
|
if (current_head == nullptr) { |
||||
|
return nullptr; |
||||
|
} |
||||
|
current_head = current_head->GetNextDestination(); |
||||
|
} |
||||
|
return current_head; |
||||
|
} |
||||
|
|
||||
|
bool ServerSplitterInfo::HasNewConnection() const { |
||||
|
return new_connection; |
||||
|
} |
||||
|
|
||||
|
s32 ServerSplitterInfo::GetLength() const { |
||||
|
return send_length; |
||||
|
} |
||||
|
|
||||
|
void ServerSplitterInfo::SetHead(ServerSplitterDestinationData* new_head) { |
||||
|
head = new_head; |
||||
|
} |
||||
|
|
||||
|
void ServerSplitterInfo::SetHeadDepth(s32 length) { |
||||
|
send_length = length; |
||||
|
} |
||||
|
|
||||
|
SplitterContext::SplitterContext() = default; |
||||
|
SplitterContext::~SplitterContext() = default; |
||||
|
|
||||
|
void SplitterContext::Initialize(BehaviorInfo& behavior_info, std::size_t _info_count, |
||||
|
std::size_t _data_count) { |
||||
|
if (!behavior_info.IsSplitterSupported() || _data_count == 0 || _info_count == 0) { |
||||
|
Setup(0, 0, false); |
||||
|
return; |
||||
|
} |
||||
|
// Only initialize if we're using splitters
|
||||
|
Setup(_info_count, _data_count, behavior_info.IsSplitterBugFixed()); |
||||
|
} |
||||
|
|
||||
|
bool SplitterContext::Update(const std::vector<u8>& input, std::size_t& input_offset, |
||||
|
std::size_t& bytes_read) { |
||||
|
auto UpdateOffsets = [&](std::size_t read) { |
||||
|
input_offset += read; |
||||
|
bytes_read += read; |
||||
|
}; |
||||
|
|
||||
|
if (info_count == 0 || data_count == 0) { |
||||
|
bytes_read = 0; |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
if (!AudioCommon::CanConsumeBuffer(input.size(), input_offset, |
||||
|
sizeof(SplitterInfo::InHeader))) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
SplitterInfo::InHeader header{}; |
||||
|
std::memcpy(&header, input.data() + input_offset, sizeof(SplitterInfo::InHeader)); |
||||
|
UpdateOffsets(sizeof(SplitterInfo::InHeader)); |
||||
|
|
||||
|
if (header.magic != SplitterMagic::SplitterHeader) { |
||||
|
LOG_ERROR(Audio, "Invalid header magic! Expecting {:X} but got {:X}", |
||||
|
SplitterMagic::SplitterHeader, header.magic); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
// Clear all connections
|
||||
|
for (auto& info : infos) { |
||||
|
info.ClearNewConnectionFlag(); |
||||
|
} |
||||
|
|
||||
|
UpdateInfo(input, input_offset, bytes_read, header.info_count); |
||||
|
UpdateData(input, input_offset, bytes_read, header.data_count); |
||||
|
const auto aligned_bytes_read = Common::AlignUp(bytes_read, 16); |
||||
|
input_offset += aligned_bytes_read - bytes_read; |
||||
|
bytes_read = aligned_bytes_read; |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool SplitterContext::UsingSplitter() const { |
||||
|
return info_count > 0 && data_count > 0; |
||||
|
} |
||||
|
|
||||
|
ServerSplitterInfo& SplitterContext::GetInfo(std::size_t i) { |
||||
|
ASSERT(i < info_count); |
||||
|
return infos.at(i); |
||||
|
} |
||||
|
|
||||
|
const ServerSplitterInfo& SplitterContext::GetInfo(std::size_t i) const { |
||||
|
ASSERT(i < info_count); |
||||
|
return infos.at(i); |
||||
|
} |
||||
|
|
||||
|
ServerSplitterDestinationData& SplitterContext::GetData(std::size_t i) { |
||||
|
ASSERT(i < data_count); |
||||
|
return datas.at(i); |
||||
|
} |
||||
|
|
||||
|
const ServerSplitterDestinationData& SplitterContext::GetData(std::size_t i) const { |
||||
|
ASSERT(i < data_count); |
||||
|
return datas.at(i); |
||||
|
} |
||||
|
|
||||
|
ServerSplitterDestinationData* SplitterContext::GetDestinationData(std::size_t info, |
||||
|
std::size_t data) { |
||||
|
ASSERT(info < info_count); |
||||
|
auto& cur_info = GetInfo(info); |
||||
|
return cur_info.GetData(data); |
||||
|
} |
||||
|
|
||||
|
const ServerSplitterDestinationData* SplitterContext::GetDestinationData(std::size_t info, |
||||
|
std::size_t data) const { |
||||
|
ASSERT(info < info_count); |
||||
|
auto& cur_info = GetInfo(info); |
||||
|
return cur_info.GetData(data); |
||||
|
} |
||||
|
|
||||
|
void SplitterContext::UpdateInternalState() { |
||||
|
if (data_count == 0) { |
||||
|
return; |
||||
|
} |
||||
|
|
||||
|
for (auto& data : datas) { |
||||
|
data.UpdateInternalState(); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
std::size_t SplitterContext::GetInfoCount() const { |
||||
|
return info_count; |
||||
|
} |
||||
|
|
||||
|
std::size_t SplitterContext::GetDataCount() const { |
||||
|
return data_count; |
||||
|
} |
||||
|
|
||||
|
void SplitterContext::Setup(std::size_t _info_count, std::size_t _data_count, |
||||
|
bool is_splitter_bug_fixed) { |
||||
|
|
||||
|
info_count = _info_count; |
||||
|
data_count = _data_count; |
||||
|
|
||||
|
for (std::size_t i = 0; i < info_count; i++) { |
||||
|
auto& splitter = infos.emplace_back(static_cast<s32>(i)); |
||||
|
splitter.InitializeInfos(); |
||||
|
} |
||||
|
for (std::size_t i = 0; i < data_count; i++) { |
||||
|
datas.emplace_back(static_cast<s32>(i)); |
||||
|
} |
||||
|
|
||||
|
bug_fixed = is_splitter_bug_fixed; |
||||
|
} |
||||
|
|
||||
|
bool SplitterContext::UpdateInfo(const std::vector<u8>& input, std::size_t& input_offset, |
||||
|
std::size_t& bytes_read, s32 in_splitter_count) { |
||||
|
auto UpdateOffsets = [&](std::size_t read) { |
||||
|
input_offset += read; |
||||
|
bytes_read += read; |
||||
|
}; |
||||
|
|
||||
|
for (s32 i = 0; i < in_splitter_count; i++) { |
||||
|
if (!AudioCommon::CanConsumeBuffer(input.size(), input_offset, |
||||
|
sizeof(SplitterInfo::InInfoPrams))) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
SplitterInfo::InInfoPrams header{}; |
||||
|
std::memcpy(&header, input.data() + input_offset, sizeof(SplitterInfo::InInfoPrams)); |
||||
|
|
||||
|
// Logged as warning as these don't actually cause a bailout for some reason
|
||||
|
if (header.magic != SplitterMagic::InfoHeader) { |
||||
|
LOG_ERROR(Audio, "Bad splitter data header"); |
||||
|
break; |
||||
|
} |
||||
|
|
||||
|
if (header.send_id < 0 || header.send_id > info_count) { |
||||
|
LOG_ERROR(Audio, "Bad splitter data id"); |
||||
|
break; |
||||
|
} |
||||
|
|
||||
|
UpdateOffsets(sizeof(SplitterInfo::InInfoPrams)); |
||||
|
auto& info = GetInfo(header.send_id); |
||||
|
if (!RecomposeDestination(info, header, input, input_offset)) { |
||||
|
LOG_ERROR(Audio, "Failed to recompose destination for splitter!"); |
||||
|
return false; |
||||
|
} |
||||
|
const std::size_t read = info.Update(header); |
||||
|
bytes_read += read; |
||||
|
input_offset += read; |
||||
|
} |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool SplitterContext::UpdateData(const std::vector<u8>& input, std::size_t& input_offset, |
||||
|
std::size_t& bytes_read, s32 in_data_count) { |
||||
|
auto UpdateOffsets = [&](std::size_t read) { |
||||
|
input_offset += read; |
||||
|
bytes_read += read; |
||||
|
}; |
||||
|
|
||||
|
for (s32 i = 0; i < in_data_count; i++) { |
||||
|
if (!AudioCommon::CanConsumeBuffer(input.size(), input_offset, |
||||
|
sizeof(SplitterInfo::InDestinationParams))) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
SplitterInfo::InDestinationParams header{}; |
||||
|
std::memcpy(&header, input.data() + input_offset, |
||||
|
sizeof(SplitterInfo::InDestinationParams)); |
||||
|
UpdateOffsets(sizeof(SplitterInfo::InDestinationParams)); |
||||
|
|
||||
|
// Logged as warning as these don't actually cause a bailout for some reason
|
||||
|
if (header.magic != SplitterMagic::DataHeader) { |
||||
|
LOG_ERROR(Audio, "Bad splitter data header"); |
||||
|
break; |
||||
|
} |
||||
|
|
||||
|
if (header.splitter_id < 0 || header.splitter_id > data_count) { |
||||
|
LOG_ERROR(Audio, "Bad splitter data id"); |
||||
|
break; |
||||
|
} |
||||
|
GetData(header.splitter_id).Update(header); |
||||
|
} |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
bool SplitterContext::RecomposeDestination(ServerSplitterInfo& info, |
||||
|
SplitterInfo::InInfoPrams& header, |
||||
|
const std::vector<u8>& input, |
||||
|
const std::size_t& input_offset) { |
||||
|
// Clear our current destinations
|
||||
|
auto* current_head = info.GetHead(); |
||||
|
while (current_head != nullptr) { |
||||
|
auto next_head = current_head->GetNextDestination(); |
||||
|
current_head->SetNextDestination(nullptr); |
||||
|
current_head = next_head; |
||||
|
} |
||||
|
info.SetHead(nullptr); |
||||
|
|
||||
|
s32 size = header.length; |
||||
|
// If the splitter bug is present, calculate fixed size
|
||||
|
if (!bug_fixed) { |
||||
|
if (info_count > 0) { |
||||
|
const auto factor = data_count / info_count; |
||||
|
size = std::min(header.length, static_cast<s32>(factor)); |
||||
|
} else { |
||||
|
size = 0; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if (size < 1) { |
||||
|
LOG_ERROR(Audio, "Invalid splitter info size! size={:X}", size); |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
auto* start_head = &GetData(header.resource_id_base); |
||||
|
current_head = start_head; |
||||
|
std::vector<s32_le> resource_ids(size - 1); |
||||
|
if (!AudioCommon::CanConsumeBuffer(input.size(), input_offset, |
||||
|
resource_ids.size() * sizeof(s32_le))) { |
||||
|
LOG_ERROR(Audio, "Buffer is an invalid size!"); |
||||
|
return false; |
||||
|
} |
||||
|
std::memcpy(resource_ids.data(), input.data() + input_offset, |
||||
|
resource_ids.size() * sizeof(s32_le)); |
||||
|
|
||||
|
for (auto resource_id : resource_ids) { |
||||
|
auto* head = &GetData(resource_id); |
||||
|
current_head->SetNextDestination(head); |
||||
|
current_head = head; |
||||
|
} |
||||
|
|
||||
|
info.SetHead(start_head); |
||||
|
info.SetHeadDepth(size); |
||||
|
|
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
NodeStates::NodeStates() = default; |
||||
|
NodeStates::~NodeStates() = default; |
||||
|
|
||||
|
void NodeStates::Initialize(std::size_t _node_count) { |
||||
|
// Setup our work parameters
|
||||
|
node_count = _node_count; |
||||
|
was_node_found.resize(node_count); |
||||
|
was_node_completed.resize(node_count); |
||||
|
index_list.resize(node_count); |
||||
|
index_stack.Reset(node_count * node_count); |
||||
|
} |
||||
|
|
||||
|
bool NodeStates::Tsort(EdgeMatrix& edge_matrix) { |
||||
|
return DepthFirstSearch(edge_matrix); |
||||
|
} |
||||
|
|
||||
|
std::size_t NodeStates::GetIndexPos() const { |
||||
|
return index_pos; |
||||
|
} |
||||
|
|
||||
|
const std::vector<s32>& NodeStates::GetIndexList() const { |
||||
|
return index_list; |
||||
|
} |
||||
|
|
||||
|
void NodeStates::PushTsortResult(s32 index) { |
||||
|
ASSERT(index < node_count); |
||||
|
index_list[index_pos++] = index; |
||||
|
} |
||||
|
|
||||
|
bool NodeStates::DepthFirstSearch(EdgeMatrix& edge_matrix) { |
||||
|
ResetState(); |
||||
|
for (std::size_t i = 0; i < node_count; i++) { |
||||
|
const auto node_id = static_cast<s32>(i); |
||||
|
|
||||
|
// If we don't have a state, send to our index stack for work
|
||||
|
if (GetState(i) == NodeStates::State::NoState) { |
||||
|
index_stack.push(node_id); |
||||
|
} |
||||
|
|
||||
|
// While we have work to do in our stack
|
||||
|
while (index_stack.Count() > 0) { |
||||
|
// Get the current node
|
||||
|
const auto current_stack_index = index_stack.top(); |
||||
|
// Check if we've seen the node yet
|
||||
|
const auto index_state = GetState(current_stack_index); |
||||
|
if (index_state == NodeStates::State::NoState) { |
||||
|
// Mark the node as seen
|
||||
|
UpdateState(NodeStates::State::InFound, current_stack_index); |
||||
|
} else if (index_state == NodeStates::State::InFound) { |
||||
|
// We've seen this node before, mark it as completed
|
||||
|
UpdateState(NodeStates::State::InCompleted, current_stack_index); |
||||
|
// Update our index list
|
||||
|
PushTsortResult(current_stack_index); |
||||
|
// Pop the stack
|
||||
|
index_stack.pop(); |
||||
|
continue; |
||||
|
} else if (index_state == NodeStates::State::InCompleted) { |
||||
|
// If our node is already sorted, clear it
|
||||
|
index_stack.pop(); |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
const auto node_count = edge_matrix.GetNodeCount(); |
||||
|
for (s32 j = 0; j < static_cast<s32>(node_count); j++) { |
||||
|
// Check if our node is connected to our edge matrix
|
||||
|
if (!edge_matrix.Connected(current_stack_index, j)) { |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
// Check if our node exists
|
||||
|
const auto node_state = GetState(j); |
||||
|
if (node_state == NodeStates::State::NoState) { |
||||
|
// Add more work
|
||||
|
index_stack.push(j); |
||||
|
} else if (node_state == NodeStates::State::InFound) { |
||||
|
UNREACHABLE_MSG("Node start marked as found"); |
||||
|
ResetState(); |
||||
|
return false; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
void NodeStates::ResetState() { |
||||
|
// Reset to the start of our index stack
|
||||
|
index_pos = 0; |
||||
|
for (std::size_t i = 0; i < node_count; i++) { |
||||
|
// Mark all nodes as not found
|
||||
|
was_node_found[i] = false; |
||||
|
// Mark all nodes as uncompleted
|
||||
|
was_node_completed[i] = false; |
||||
|
// Mark all indexes as invalid
|
||||
|
index_list[i] = -1; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void NodeStates::UpdateState(NodeStates::State state, std::size_t i) { |
||||
|
switch (state) { |
||||
|
case NodeStates::State::NoState: |
||||
|
was_node_found[i] = false; |
||||
|
was_node_completed[i] = false; |
||||
|
break; |
||||
|
case NodeStates::State::InFound: |
||||
|
was_node_found[i] = true; |
||||
|
was_node_completed[i] = false; |
||||
|
break; |
||||
|
case NodeStates::State::InCompleted: |
||||
|
was_node_found[i] = false; |
||||
|
was_node_completed[i] = true; |
||||
|
break; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
NodeStates::State NodeStates::GetState(std::size_t i) { |
||||
|
ASSERT(i < node_count); |
||||
|
if (was_node_found[i]) { |
||||
|
// If our node exists in our found list
|
||||
|
return NodeStates::State::InFound; |
||||
|
} else if (was_node_completed[i]) { |
||||
|
// If node is in the completed list
|
||||
|
return NodeStates::State::InCompleted; |
||||
|
} else { |
||||
|
// If in neither
|
||||
|
return NodeStates::State::NoState; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
NodeStates::Stack::Stack() = default; |
||||
|
NodeStates::Stack::~Stack() = default; |
||||
|
|
||||
|
void NodeStates::Stack::Reset(std::size_t size) { |
||||
|
// Mark our stack as empty
|
||||
|
stack.resize(size); |
||||
|
stack_size = size; |
||||
|
stack_pos = 0; |
||||
|
std::fill(stack.begin(), stack.end(), 0); |
||||
|
} |
||||
|
|
||||
|
void NodeStates::Stack::push(s32 val) { |
||||
|
ASSERT(stack_pos < stack_size); |
||||
|
stack[stack_pos++] = val; |
||||
|
} |
||||
|
|
||||
|
std::size_t NodeStates::Stack::Count() const { |
||||
|
return stack_pos; |
||||
|
} |
||||
|
|
||||
|
s32 NodeStates::Stack::top() const { |
||||
|
ASSERT(stack_pos > 0); |
||||
|
return stack[stack_pos - 1]; |
||||
|
} |
||||
|
|
||||
|
s32 NodeStates::Stack::pop() { |
||||
|
ASSERT(stack_pos > 0); |
||||
|
stack_pos--; |
||||
|
return stack[stack_pos]; |
||||
|
} |
||||
|
|
||||
|
EdgeMatrix::EdgeMatrix() = default; |
||||
|
EdgeMatrix::~EdgeMatrix() = default; |
||||
|
|
||||
|
void EdgeMatrix::Initialize(std::size_t _node_count) { |
||||
|
node_count = _node_count; |
||||
|
edge_matrix.resize(node_count * node_count); |
||||
|
} |
||||
|
|
||||
|
bool EdgeMatrix::Connected(s32 a, s32 b) { |
||||
|
return GetState(a, b); |
||||
|
} |
||||
|
|
||||
|
void EdgeMatrix::Connect(s32 a, s32 b) { |
||||
|
SetState(a, b, true); |
||||
|
} |
||||
|
|
||||
|
void EdgeMatrix::Disconnect(s32 a, s32 b) { |
||||
|
SetState(a, b, false); |
||||
|
} |
||||
|
|
||||
|
void EdgeMatrix::RemoveEdges(s32 edge) { |
||||
|
for (std::size_t i = 0; i < node_count; i++) { |
||||
|
SetState(edge, static_cast<s32>(i), false); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
std::size_t EdgeMatrix::GetNodeCount() const { |
||||
|
return node_count; |
||||
|
} |
||||
|
|
||||
|
void EdgeMatrix::SetState(s32 a, s32 b, bool state) { |
||||
|
ASSERT(InRange(a, b)); |
||||
|
edge_matrix.at(a * node_count + b) = state; |
||||
|
} |
||||
|
|
||||
|
bool EdgeMatrix::GetState(s32 a, s32 b) { |
||||
|
ASSERT(InRange(a, b)); |
||||
|
return edge_matrix.at(a * node_count + b); |
||||
|
} |
||||
|
|
||||
|
bool EdgeMatrix::InRange(s32 a, s32 b) const { |
||||
|
const std::size_t pos = a * node_count + b; |
||||
|
return pos < (node_count * node_count); |
||||
|
} |
||||
|
|
||||
|
} // namespace AudioCore
|
||||
@ -0,0 +1,221 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include <stack> |
||||
|
#include <vector> |
||||
|
#include "audio_core/common.h" |
||||
|
#include "common/common_funcs.h" |
||||
|
#include "common/common_types.h" |
||||
|
#include "common/swap.h" |
||||
|
|
||||
|
namespace AudioCore { |
||||
|
class BehaviorInfo; |
||||
|
|
||||
|
class EdgeMatrix { |
||||
|
public: |
||||
|
EdgeMatrix(); |
||||
|
~EdgeMatrix(); |
||||
|
|
||||
|
void Initialize(std::size_t _node_count); |
||||
|
bool Connected(s32 a, s32 b); |
||||
|
void Connect(s32 a, s32 b); |
||||
|
void Disconnect(s32 a, s32 b); |
||||
|
void RemoveEdges(s32 edge); |
||||
|
std::size_t GetNodeCount() const; |
||||
|
|
||||
|
private: |
||||
|
void SetState(s32 a, s32 b, bool state); |
||||
|
bool GetState(s32 a, s32 b); |
||||
|
|
||||
|
bool InRange(s32 a, s32 b) const; |
||||
|
std::vector<bool> edge_matrix{}; |
||||
|
std::size_t node_count{}; |
||||
|
}; |
||||
|
|
||||
|
class NodeStates { |
||||
|
public: |
||||
|
enum class State { |
||||
|
NoState = 0, |
||||
|
InFound = 1, |
||||
|
InCompleted = 2, |
||||
|
}; |
||||
|
|
||||
|
// Looks to be a fixed size stack. Placed within the NodeStates class based on symbols |
||||
|
class Stack { |
||||
|
public: |
||||
|
Stack(); |
||||
|
~Stack(); |
||||
|
|
||||
|
void Reset(std::size_t size); |
||||
|
void push(s32 val); |
||||
|
std::size_t Count() const; |
||||
|
s32 top() const; |
||||
|
s32 pop(); |
||||
|
|
||||
|
private: |
||||
|
std::vector<s32> stack{}; |
||||
|
std::size_t stack_size{}; |
||||
|
std::size_t stack_pos{}; |
||||
|
}; |
||||
|
NodeStates(); |
||||
|
~NodeStates(); |
||||
|
|
||||
|
void Initialize(std::size_t _node_count); |
||||
|
bool Tsort(EdgeMatrix& edge_matrix); |
||||
|
std::size_t GetIndexPos() const; |
||||
|
const std::vector<s32>& GetIndexList() const; |
||||
|
|
||||
|
private: |
||||
|
void PushTsortResult(s32 index); |
||||
|
bool DepthFirstSearch(EdgeMatrix& edge_matrix); |
||||
|
void ResetState(); |
||||
|
void UpdateState(NodeStates::State state, std::size_t i); |
||||
|
NodeStates::State GetState(std::size_t i); |
||||
|
|
||||
|
std::size_t node_count{}; |
||||
|
std::vector<bool> was_node_found{}; |
||||
|
std::vector<bool> was_node_completed{}; |
||||
|
std::size_t index_pos{}; |
||||
|
std::vector<s32> index_list{}; |
||||
|
NodeStates::Stack index_stack{}; |
||||
|
}; |
||||
|
|
||||
|
enum class SplitterMagic : u32_le { |
||||
|
SplitterHeader = Common::MakeMagic('S', 'N', 'D', 'H'), |
||||
|
DataHeader = Common::MakeMagic('S', 'N', 'D', 'D'), |
||||
|
InfoHeader = Common::MakeMagic('S', 'N', 'D', 'I'), |
||||
|
}; |
||||
|
|
||||
|
class SplitterInfo { |
||||
|
public: |
||||
|
struct InHeader { |
||||
|
SplitterMagic magic{}; |
||||
|
s32_le info_count{}; |
||||
|
s32_le data_count{}; |
||||
|
INSERT_PADDING_WORDS(5); |
||||
|
}; |
||||
|
static_assert(sizeof(SplitterInfo::InHeader) == 0x20, |
||||
|
"SplitterInfo::InHeader is an invalid size"); |
||||
|
|
||||
|
struct InInfoPrams { |
||||
|
SplitterMagic magic{}; |
||||
|
s32_le send_id{}; |
||||
|
s32_le sample_rate{}; |
||||
|
s32_le length{}; |
||||
|
s32_le resource_id_base{}; |
||||
|
}; |
||||
|
static_assert(sizeof(SplitterInfo::InInfoPrams) == 0x14, |
||||
|
"SplitterInfo::InInfoPrams is an invalid size"); |
||||
|
|
||||
|
struct InDestinationParams { |
||||
|
SplitterMagic magic{}; |
||||
|
s32_le splitter_id{}; |
||||
|
std::array<float_le, AudioCommon::MAX_MIX_BUFFERS> mix_volumes{}; |
||||
|
s32_le mix_id{}; |
||||
|
bool in_use{}; |
||||
|
INSERT_PADDING_BYTES(3); |
||||
|
}; |
||||
|
static_assert(sizeof(SplitterInfo::InDestinationParams) == 0x70, |
||||
|
"SplitterInfo::InDestinationParams is an invalid size"); |
||||
|
}; |
||||
|
|
||||
|
class ServerSplitterDestinationData { |
||||
|
public: |
||||
|
explicit ServerSplitterDestinationData(s32 id); |
||||
|
~ServerSplitterDestinationData(); |
||||
|
|
||||
|
void Update(SplitterInfo::InDestinationParams& header); |
||||
|
|
||||
|
ServerSplitterDestinationData* GetNextDestination(); |
||||
|
const ServerSplitterDestinationData* GetNextDestination() const; |
||||
|
void SetNextDestination(ServerSplitterDestinationData* dest); |
||||
|
bool ValidMixId() const; |
||||
|
s32 GetMixId() const; |
||||
|
bool IsConfigured() const; |
||||
|
float GetMixVolume(std::size_t i) const; |
||||
|
const std::array<float, AudioCommon::MAX_MIX_BUFFERS>& CurrentMixVolumes() const; |
||||
|
const std::array<float, AudioCommon::MAX_MIX_BUFFERS>& LastMixVolumes() const; |
||||
|
void MarkDirty(); |
||||
|
void UpdateInternalState(); |
||||
|
|
||||
|
private: |
||||
|
bool needs_update{}; |
||||
|
bool in_use{}; |
||||
|
s32 id{}; |
||||
|
s32 mix_id{}; |
||||
|
std::array<float, AudioCommon::MAX_MIX_BUFFERS> current_mix_volumes{}; |
||||
|
std::array<float, AudioCommon::MAX_MIX_BUFFERS> last_mix_volumes{}; |
||||
|
ServerSplitterDestinationData* next = nullptr; |
||||
|
}; |
||||
|
|
||||
|
class ServerSplitterInfo { |
||||
|
public: |
||||
|
explicit ServerSplitterInfo(s32 id); |
||||
|
~ServerSplitterInfo(); |
||||
|
|
||||
|
void InitializeInfos(); |
||||
|
void ClearNewConnectionFlag(); |
||||
|
std::size_t Update(SplitterInfo::InInfoPrams& header); |
||||
|
|
||||
|
ServerSplitterDestinationData* GetHead(); |
||||
|
const ServerSplitterDestinationData* GetHead() const; |
||||
|
ServerSplitterDestinationData* GetData(std::size_t depth); |
||||
|
const ServerSplitterDestinationData* GetData(std::size_t depth) const; |
||||
|
|
||||
|
bool HasNewConnection() const; |
||||
|
s32 GetLength() const; |
||||
|
|
||||
|
void SetHead(ServerSplitterDestinationData* new_head); |
||||
|
void SetHeadDepth(s32 length); |
||||
|
|
||||
|
private: |
||||
|
s32 sample_rate{}; |
||||
|
s32 id{}; |
||||
|
s32 send_length{}; |
||||
|
ServerSplitterDestinationData* head = nullptr; |
||||
|
bool new_connection{}; |
||||
|
}; |
||||
|
|
||||
|
class SplitterContext { |
||||
|
public: |
||||
|
SplitterContext(); |
||||
|
~SplitterContext(); |
||||
|
|
||||
|
void Initialize(BehaviorInfo& behavior_info, std::size_t splitter_count, |
||||
|
std::size_t data_count); |
||||
|
|
||||
|
bool Update(const std::vector<u8>& input, std::size_t& input_offset, std::size_t& bytes_read); |
||||
|
bool UsingSplitter() const; |
||||
|
|
||||
|
ServerSplitterInfo& GetInfo(std::size_t i); |
||||
|
const ServerSplitterInfo& GetInfo(std::size_t i) const; |
||||
|
ServerSplitterDestinationData& GetData(std::size_t i); |
||||
|
const ServerSplitterDestinationData& GetData(std::size_t i) const; |
||||
|
ServerSplitterDestinationData* GetDestinationData(std::size_t info, std::size_t data); |
||||
|
const ServerSplitterDestinationData* GetDestinationData(std::size_t info, |
||||
|
std::size_t data) const; |
||||
|
void UpdateInternalState(); |
||||
|
|
||||
|
std::size_t GetInfoCount() const; |
||||
|
std::size_t GetDataCount() const; |
||||
|
|
||||
|
private: |
||||
|
void Setup(std::size_t info_count, std::size_t data_count, bool is_splitter_bug_fixed); |
||||
|
bool UpdateInfo(const std::vector<u8>& input, std::size_t& input_offset, |
||||
|
std::size_t& bytes_read, s32 in_splitter_count); |
||||
|
bool UpdateData(const std::vector<u8>& input, std::size_t& input_offset, |
||||
|
std::size_t& bytes_read, s32 in_data_count); |
||||
|
bool RecomposeDestination(ServerSplitterInfo& info, SplitterInfo::InInfoPrams& header, |
||||
|
const std::vector<u8>& input, const std::size_t& input_offset); |
||||
|
|
||||
|
std::vector<ServerSplitterInfo> infos{}; |
||||
|
std::vector<ServerSplitterDestinationData> datas{}; |
||||
|
|
||||
|
std::size_t info_count{}; |
||||
|
std::size_t data_count{}; |
||||
|
bool bug_fixed{}; |
||||
|
}; |
||||
|
} // namespace AudioCore |
||||
@ -0,0 +1,531 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "audio_core/behavior_info.h"
|
||||
|
#include "audio_core/voice_context.h"
|
||||
|
#include "core/memory.h"
|
||||
|
|
||||
|
namespace AudioCore { |
||||
|
|
||||
|
ServerVoiceChannelResource::ServerVoiceChannelResource(s32 id) : id(id) {} |
||||
|
ServerVoiceChannelResource::~ServerVoiceChannelResource() = default; |
||||
|
|
||||
|
bool ServerVoiceChannelResource::InUse() const { |
||||
|
return in_use; |
||||
|
} |
||||
|
|
||||
|
float ServerVoiceChannelResource::GetCurrentMixVolumeAt(std::size_t i) const { |
||||
|
ASSERT(i < AudioCommon::MAX_MIX_BUFFERS); |
||||
|
return mix_volume.at(i); |
||||
|
} |
||||
|
|
||||
|
float ServerVoiceChannelResource::GetLastMixVolumeAt(std::size_t i) const { |
||||
|
ASSERT(i < AudioCommon::MAX_MIX_BUFFERS); |
||||
|
return last_mix_volume.at(i); |
||||
|
} |
||||
|
|
||||
|
void ServerVoiceChannelResource::Update(VoiceChannelResource::InParams& in_params) { |
||||
|
in_use = in_params.in_use; |
||||
|
// Update our mix volumes only if it's in use
|
||||
|
if (in_params.in_use) { |
||||
|
std::copy(in_params.mix_volume.begin(), in_params.mix_volume.end(), mix_volume.begin()); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void ServerVoiceChannelResource::UpdateLastMixVolumes() { |
||||
|
std::copy(mix_volume.begin(), mix_volume.end(), last_mix_volume.begin()); |
||||
|
} |
||||
|
|
||||
|
const std::array<float, AudioCommon::MAX_MIX_BUFFERS>& |
||||
|
ServerVoiceChannelResource::GetCurrentMixVolume() const { |
||||
|
return mix_volume; |
||||
|
} |
||||
|
|
||||
|
const std::array<float, AudioCommon::MAX_MIX_BUFFERS>& |
||||
|
ServerVoiceChannelResource::GetLastMixVolume() const { |
||||
|
return last_mix_volume; |
||||
|
} |
||||
|
|
||||
|
ServerVoiceInfo::ServerVoiceInfo() { |
||||
|
Initialize(); |
||||
|
} |
||||
|
ServerVoiceInfo::~ServerVoiceInfo() = default; |
||||
|
|
||||
|
void ServerVoiceInfo::Initialize() { |
||||
|
in_params.in_use = false; |
||||
|
in_params.node_id = 0; |
||||
|
in_params.id = 0; |
||||
|
in_params.current_playstate = ServerPlayState::Stop; |
||||
|
in_params.priority = 255; |
||||
|
in_params.sample_rate = 0; |
||||
|
in_params.sample_format = SampleFormat::Invalid; |
||||
|
in_params.channel_count = 0; |
||||
|
in_params.pitch = 0.0f; |
||||
|
in_params.volume = 0.0f; |
||||
|
in_params.last_volume = 0.0f; |
||||
|
std::memset(in_params.biquad_filter.data(), 0, |
||||
|
sizeof(BiquadFilterParameter) * in_params.biquad_filter.size()); |
||||
|
in_params.wave_buffer_count = 0; |
||||
|
in_params.wave_bufffer_head = 0; |
||||
|
in_params.mix_id = AudioCommon::NO_MIX; |
||||
|
in_params.splitter_info_id = AudioCommon::NO_SPLITTER; |
||||
|
in_params.additional_params_address = 0; |
||||
|
in_params.additional_params_size = 0; |
||||
|
in_params.is_new = false; |
||||
|
out_params.played_sample_count = 0; |
||||
|
out_params.wave_buffer_consumed = 0; |
||||
|
in_params.voice_drop_flag = false; |
||||
|
in_params.buffer_mapped = false; |
||||
|
in_params.wave_buffer_flush_request_count = 0; |
||||
|
std::fill(in_params.was_biquad_filter_enabled.begin(), |
||||
|
in_params.was_biquad_filter_enabled.end(), false); |
||||
|
|
||||
|
for (auto& wave_buffer : in_params.wave_buffer) { |
||||
|
wave_buffer.start_sample_offset = 0; |
||||
|
wave_buffer.end_sample_offset = 0; |
||||
|
wave_buffer.is_looping = false; |
||||
|
wave_buffer.end_of_stream = false; |
||||
|
wave_buffer.buffer_address = 0; |
||||
|
wave_buffer.buffer_size = 0; |
||||
|
wave_buffer.context_address = 0; |
||||
|
wave_buffer.context_size = 0; |
||||
|
wave_buffer.sent_to_dsp = true; |
||||
|
} |
||||
|
|
||||
|
stored_samples.clear(); |
||||
|
} |
||||
|
|
||||
|
void ServerVoiceInfo::UpdateParameters(const VoiceInfo::InParams& voice_in, |
||||
|
BehaviorInfo& behavior_info) { |
||||
|
in_params.in_use = voice_in.is_in_use; |
||||
|
in_params.id = voice_in.id; |
||||
|
in_params.node_id = voice_in.node_id; |
||||
|
in_params.last_playstate = in_params.current_playstate; |
||||
|
switch (voice_in.play_state) { |
||||
|
case PlayState::Paused: |
||||
|
in_params.current_playstate = ServerPlayState::Paused; |
||||
|
break; |
||||
|
case PlayState::Stopped: |
||||
|
if (in_params.current_playstate != ServerPlayState::Stop) { |
||||
|
in_params.current_playstate = ServerPlayState::RequestStop; |
||||
|
} |
||||
|
break; |
||||
|
case PlayState::Started: |
||||
|
in_params.current_playstate = ServerPlayState::Play; |
||||
|
break; |
||||
|
default: |
||||
|
UNREACHABLE_MSG("Unknown playstate {}", voice_in.play_state); |
||||
|
break; |
||||
|
} |
||||
|
|
||||
|
in_params.priority = voice_in.priority; |
||||
|
in_params.sorting_order = voice_in.sorting_order; |
||||
|
in_params.sample_rate = voice_in.sample_rate; |
||||
|
in_params.sample_format = voice_in.sample_format; |
||||
|
in_params.channel_count = voice_in.channel_count; |
||||
|
in_params.pitch = voice_in.pitch; |
||||
|
in_params.volume = voice_in.volume; |
||||
|
std::memcpy(in_params.biquad_filter.data(), voice_in.biquad_filter.data(), |
||||
|
sizeof(BiquadFilterParameter) * voice_in.biquad_filter.size()); |
||||
|
in_params.wave_buffer_count = voice_in.wave_buffer_count; |
||||
|
in_params.wave_bufffer_head = voice_in.wave_buffer_head; |
||||
|
if (behavior_info.IsFlushVoiceWaveBuffersSupported()) { |
||||
|
in_params.wave_buffer_flush_request_count += voice_in.wave_buffer_flush_request_count; |
||||
|
} |
||||
|
in_params.mix_id = voice_in.mix_id; |
||||
|
if (behavior_info.IsSplitterSupported()) { |
||||
|
in_params.splitter_info_id = voice_in.splitter_info_id; |
||||
|
} else { |
||||
|
in_params.splitter_info_id = AudioCommon::NO_SPLITTER; |
||||
|
} |
||||
|
|
||||
|
std::memcpy(in_params.voice_channel_resource_id.data(), |
||||
|
voice_in.voice_channel_resource_ids.data(), |
||||
|
sizeof(s32) * in_params.voice_channel_resource_id.size()); |
||||
|
|
||||
|
if (behavior_info.IsVoicePlayedSampleCountResetAtLoopPointSupported()) { |
||||
|
in_params.behavior_flags.is_played_samples_reset_at_loop_point = |
||||
|
voice_in.behavior_flags.is_played_samples_reset_at_loop_point; |
||||
|
} else { |
||||
|
in_params.behavior_flags.is_played_samples_reset_at_loop_point.Assign(0); |
||||
|
} |
||||
|
if (behavior_info.IsVoicePitchAndSrcSkippedSupported()) { |
||||
|
in_params.behavior_flags.is_pitch_and_src_skipped = |
||||
|
voice_in.behavior_flags.is_pitch_and_src_skipped; |
||||
|
} else { |
||||
|
in_params.behavior_flags.is_pitch_and_src_skipped.Assign(0); |
||||
|
} |
||||
|
|
||||
|
if (voice_in.is_voice_drop_flag_clear_requested) { |
||||
|
in_params.voice_drop_flag = false; |
||||
|
} |
||||
|
|
||||
|
if (in_params.additional_params_address != voice_in.additional_params_address || |
||||
|
in_params.additional_params_size != voice_in.additional_params_size) { |
||||
|
in_params.additional_params_address = voice_in.additional_params_address; |
||||
|
in_params.additional_params_size = voice_in.additional_params_size; |
||||
|
// TODO(ogniK): Reattach buffer, do we actually need to? Maybe just signal to the DSP that
|
||||
|
// our context is new
|
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void ServerVoiceInfo::UpdateWaveBuffers( |
||||
|
const VoiceInfo::InParams& voice_in, |
||||
|
std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT>& voice_states, |
||||
|
BehaviorInfo& behavior_info) { |
||||
|
if (voice_in.is_new) { |
||||
|
// Initialize our wave buffers
|
||||
|
for (auto& wave_buffer : in_params.wave_buffer) { |
||||
|
wave_buffer.start_sample_offset = 0; |
||||
|
wave_buffer.end_sample_offset = 0; |
||||
|
wave_buffer.is_looping = false; |
||||
|
wave_buffer.end_of_stream = false; |
||||
|
wave_buffer.buffer_address = 0; |
||||
|
wave_buffer.buffer_size = 0; |
||||
|
wave_buffer.context_address = 0; |
||||
|
wave_buffer.context_size = 0; |
||||
|
wave_buffer.sent_to_dsp = true; |
||||
|
} |
||||
|
|
||||
|
// Mark all our wave buffers as invalid
|
||||
|
for (std::size_t channel = 0; channel < static_cast<std::size_t>(in_params.channel_count); |
||||
|
channel++) { |
||||
|
for (auto& is_valid : voice_states[channel]->is_wave_buffer_valid) { |
||||
|
is_valid = false; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// Update our wave buffers
|
||||
|
for (std::size_t i = 0; i < AudioCommon::MAX_WAVE_BUFFERS; i++) { |
||||
|
// Assume that we have at least 1 channel voice state
|
||||
|
const auto have_valid_wave_buffer = voice_states[0]->is_wave_buffer_valid[i]; |
||||
|
|
||||
|
UpdateWaveBuffer(in_params.wave_buffer[i], voice_in.wave_buffer[i], in_params.sample_format, |
||||
|
have_valid_wave_buffer, behavior_info); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void ServerVoiceInfo::UpdateWaveBuffer(ServerWaveBuffer& out_wavebuffer, |
||||
|
const WaveBuffer& in_wave_buffer, SampleFormat sample_format, |
||||
|
bool is_buffer_valid, BehaviorInfo& behavior_info) { |
||||
|
if (!is_buffer_valid && out_wavebuffer.sent_to_dsp) { |
||||
|
out_wavebuffer.buffer_address = 0; |
||||
|
out_wavebuffer.buffer_size = 0; |
||||
|
} |
||||
|
|
||||
|
if (!in_wave_buffer.sent_to_server || !in_params.buffer_mapped) { |
||||
|
// Validate sample offset sizings
|
||||
|
if (sample_format == SampleFormat::Pcm16) { |
||||
|
const auto buffer_size = in_wave_buffer.buffer_size; |
||||
|
if (in_wave_buffer.start_sample_offset < 0 || in_wave_buffer.end_sample_offset < 0 || |
||||
|
(buffer_size < (sizeof(s16) * in_wave_buffer.start_sample_offset)) || |
||||
|
(buffer_size < (sizeof(s16) * in_wave_buffer.end_sample_offset))) { |
||||
|
// TODO(ogniK): Write error info
|
||||
|
return; |
||||
|
} |
||||
|
} |
||||
|
// TODO(ogniK): ADPCM Size error
|
||||
|
|
||||
|
out_wavebuffer.sent_to_dsp = false; |
||||
|
out_wavebuffer.start_sample_offset = in_wave_buffer.start_sample_offset; |
||||
|
out_wavebuffer.end_sample_offset = in_wave_buffer.end_sample_offset; |
||||
|
out_wavebuffer.is_looping = in_wave_buffer.is_looping; |
||||
|
out_wavebuffer.end_of_stream = in_wave_buffer.end_of_stream; |
||||
|
|
||||
|
out_wavebuffer.buffer_address = in_wave_buffer.buffer_address; |
||||
|
out_wavebuffer.buffer_size = in_wave_buffer.buffer_size; |
||||
|
out_wavebuffer.context_address = in_wave_buffer.context_address; |
||||
|
out_wavebuffer.context_size = in_wave_buffer.context_size; |
||||
|
in_params.buffer_mapped = |
||||
|
in_wave_buffer.buffer_address != 0 && in_wave_buffer.buffer_size != 0; |
||||
|
// TODO(ogniK): Pool mapper attachment
|
||||
|
// TODO(ogniK): IsAdpcmLoopContextBugFixed
|
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void ServerVoiceInfo::WriteOutStatus( |
||||
|
VoiceInfo::OutParams& voice_out, VoiceInfo::InParams& voice_in, |
||||
|
std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT>& voice_states) { |
||||
|
if (voice_in.is_new) { |
||||
|
in_params.is_new = true; |
||||
|
voice_out.wave_buffer_consumed = 0; |
||||
|
voice_out.played_sample_count = 0; |
||||
|
voice_out.voice_dropped = false; |
||||
|
} else if (!in_params.is_new) { |
||||
|
voice_out.wave_buffer_consumed = voice_states[0]->wave_buffer_consumed; |
||||
|
voice_out.played_sample_count = voice_states[0]->played_sample_count; |
||||
|
voice_out.voice_dropped = in_params.voice_drop_flag; |
||||
|
} else { |
||||
|
voice_out.wave_buffer_consumed = 0; |
||||
|
voice_out.played_sample_count = 0; |
||||
|
voice_out.voice_dropped = false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
const ServerVoiceInfo::InParams& ServerVoiceInfo::GetInParams() const { |
||||
|
return in_params; |
||||
|
} |
||||
|
|
||||
|
ServerVoiceInfo::InParams& ServerVoiceInfo::GetInParams() { |
||||
|
return in_params; |
||||
|
} |
||||
|
|
||||
|
const ServerVoiceInfo::OutParams& ServerVoiceInfo::GetOutParams() const { |
||||
|
return out_params; |
||||
|
} |
||||
|
|
||||
|
ServerVoiceInfo::OutParams& ServerVoiceInfo::GetOutParams() { |
||||
|
return out_params; |
||||
|
} |
||||
|
|
||||
|
bool ServerVoiceInfo::ShouldSkip() const { |
||||
|
// TODO(ogniK): Handle unmapped wave buffers or parameters
|
||||
|
return !in_params.in_use || (in_params.wave_buffer_count == 0) || in_params.voice_drop_flag; |
||||
|
} |
||||
|
|
||||
|
bool ServerVoiceInfo::UpdateForCommandGeneration(VoiceContext& voice_context) { |
||||
|
std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT> dsp_voice_states{}; |
||||
|
if (in_params.is_new) { |
||||
|
ResetResources(voice_context); |
||||
|
in_params.last_volume = in_params.volume; |
||||
|
in_params.is_new = false; |
||||
|
} |
||||
|
|
||||
|
const s32 channel_count = in_params.channel_count; |
||||
|
for (s32 i = 0; i < channel_count; i++) { |
||||
|
const auto channel_resource = in_params.voice_channel_resource_id[i]; |
||||
|
dsp_voice_states[i] = |
||||
|
&voice_context.GetDspSharedState(static_cast<std::size_t>(channel_resource)); |
||||
|
} |
||||
|
return UpdateParametersForCommandGeneration(dsp_voice_states); |
||||
|
} |
||||
|
|
||||
|
void ServerVoiceInfo::ResetResources(VoiceContext& voice_context) { |
||||
|
const s32 channel_count = in_params.channel_count; |
||||
|
for (s32 i = 0; i < channel_count; i++) { |
||||
|
const auto channel_resource = in_params.voice_channel_resource_id[i]; |
||||
|
auto& dsp_state = |
||||
|
voice_context.GetDspSharedState(static_cast<std::size_t>(channel_resource)); |
||||
|
std::memset(&dsp_state, 0, sizeof(VoiceState)); |
||||
|
voice_context.GetChannelResource(static_cast<std::size_t>(channel_resource)) |
||||
|
.UpdateLastMixVolumes(); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
bool ServerVoiceInfo::UpdateParametersForCommandGeneration( |
||||
|
std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT>& dsp_voice_states) { |
||||
|
const s32 channel_count = in_params.channel_count; |
||||
|
if (in_params.wave_buffer_flush_request_count > 0) { |
||||
|
FlushWaveBuffers(in_params.wave_buffer_flush_request_count, dsp_voice_states, |
||||
|
channel_count); |
||||
|
in_params.wave_buffer_flush_request_count = 0; |
||||
|
} |
||||
|
|
||||
|
switch (in_params.current_playstate) { |
||||
|
case ServerPlayState::Play: { |
||||
|
for (std::size_t i = 0; i < AudioCommon::MAX_WAVE_BUFFERS; i++) { |
||||
|
if (!in_params.wave_buffer[i].sent_to_dsp) { |
||||
|
for (s32 channel = 0; channel < channel_count; channel++) { |
||||
|
dsp_voice_states[channel]->is_wave_buffer_valid[i] = true; |
||||
|
} |
||||
|
in_params.wave_buffer[i].sent_to_dsp = true; |
||||
|
} |
||||
|
} |
||||
|
in_params.should_depop = false; |
||||
|
return HasValidWaveBuffer(dsp_voice_states[0]); |
||||
|
} |
||||
|
case ServerPlayState::Paused: |
||||
|
case ServerPlayState::Stop: { |
||||
|
in_params.should_depop = in_params.last_playstate == ServerPlayState::Play; |
||||
|
return in_params.should_depop; |
||||
|
} |
||||
|
case ServerPlayState::RequestStop: { |
||||
|
for (std::size_t i = 0; i < AudioCommon::MAX_WAVE_BUFFERS; i++) { |
||||
|
in_params.wave_buffer[i].sent_to_dsp = true; |
||||
|
for (s32 channel = 0; channel < channel_count; channel++) { |
||||
|
auto* dsp_state = dsp_voice_states[channel]; |
||||
|
|
||||
|
if (dsp_state->is_wave_buffer_valid[i]) { |
||||
|
dsp_state->wave_buffer_index = |
||||
|
(dsp_state->wave_buffer_index + 1) % AudioCommon::MAX_WAVE_BUFFERS; |
||||
|
dsp_state->wave_buffer_consumed++; |
||||
|
} |
||||
|
|
||||
|
dsp_state->is_wave_buffer_valid[i] = false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
for (s32 channel = 0; channel < channel_count; channel++) { |
||||
|
auto* dsp_state = dsp_voice_states[channel]; |
||||
|
dsp_state->offset = 0; |
||||
|
dsp_state->played_sample_count = 0; |
||||
|
dsp_state->fraction = 0; |
||||
|
std::memset(dsp_state->sample_history.data(), 0, |
||||
|
sizeof(s32) * dsp_state->sample_history.size()); |
||||
|
std::memset(&dsp_state->context, 0, sizeof(dsp_state->context)); |
||||
|
} |
||||
|
|
||||
|
in_params.current_playstate = ServerPlayState::Stop; |
||||
|
in_params.should_depop = in_params.last_playstate == ServerPlayState::Play; |
||||
|
return in_params.should_depop; |
||||
|
} |
||||
|
default: |
||||
|
UNREACHABLE_MSG("Invalid playstate {}", in_params.current_playstate); |
||||
|
} |
||||
|
|
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
void ServerVoiceInfo::FlushWaveBuffers( |
||||
|
u8 flush_count, std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT>& dsp_voice_states, |
||||
|
s32 channel_count) { |
||||
|
auto wave_head = in_params.wave_bufffer_head; |
||||
|
|
||||
|
for (u8 i = 0; i < flush_count; i++) { |
||||
|
in_params.wave_buffer[wave_head].sent_to_dsp = true; |
||||
|
for (s32 channel = 0; channel < channel_count; channel++) { |
||||
|
auto* dsp_state = dsp_voice_states[channel]; |
||||
|
dsp_state->wave_buffer_consumed++; |
||||
|
dsp_state->is_wave_buffer_valid[wave_head] = false; |
||||
|
dsp_state->wave_buffer_index = |
||||
|
(dsp_state->wave_buffer_index + 1) % AudioCommon::MAX_WAVE_BUFFERS; |
||||
|
} |
||||
|
wave_head = (wave_head + 1) % AudioCommon::MAX_WAVE_BUFFERS; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
bool ServerVoiceInfo::HasValidWaveBuffer(const VoiceState* state) const { |
||||
|
const auto& valid_wb = state->is_wave_buffer_valid; |
||||
|
return std::find(valid_wb.begin(), valid_wb.end(), true) != valid_wb.end(); |
||||
|
} |
||||
|
|
||||
|
VoiceContext::VoiceContext(std::size_t voice_count) : voice_count(voice_count) { |
||||
|
for (std::size_t i = 0; i < voice_count; i++) { |
||||
|
voice_channel_resources.emplace_back(static_cast<s32>(i)); |
||||
|
sorted_voice_info.push_back(&voice_info.emplace_back()); |
||||
|
voice_states.emplace_back(); |
||||
|
dsp_voice_states.emplace_back(); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
VoiceContext::~VoiceContext() { |
||||
|
sorted_voice_info.clear(); |
||||
|
} |
||||
|
|
||||
|
std::size_t VoiceContext::GetVoiceCount() const { |
||||
|
return voice_count; |
||||
|
} |
||||
|
|
||||
|
ServerVoiceChannelResource& VoiceContext::GetChannelResource(std::size_t i) { |
||||
|
ASSERT(i < voice_count); |
||||
|
return voice_channel_resources.at(i); |
||||
|
} |
||||
|
|
||||
|
const ServerVoiceChannelResource& VoiceContext::GetChannelResource(std::size_t i) const { |
||||
|
ASSERT(i < voice_count); |
||||
|
return voice_channel_resources.at(i); |
||||
|
} |
||||
|
|
||||
|
VoiceState& VoiceContext::GetState(std::size_t i) { |
||||
|
ASSERT(i < voice_count); |
||||
|
return voice_states.at(i); |
||||
|
} |
||||
|
|
||||
|
const VoiceState& VoiceContext::GetState(std::size_t i) const { |
||||
|
ASSERT(i < voice_count); |
||||
|
return voice_states.at(i); |
||||
|
} |
||||
|
|
||||
|
VoiceState& VoiceContext::GetDspSharedState(std::size_t i) { |
||||
|
ASSERT(i < voice_count); |
||||
|
return dsp_voice_states.at(i); |
||||
|
} |
||||
|
|
||||
|
const VoiceState& VoiceContext::GetDspSharedState(std::size_t i) const { |
||||
|
ASSERT(i < voice_count); |
||||
|
return dsp_voice_states.at(i); |
||||
|
} |
||||
|
|
||||
|
ServerVoiceInfo& VoiceContext::GetInfo(std::size_t i) { |
||||
|
ASSERT(i < voice_count); |
||||
|
return voice_info.at(i); |
||||
|
} |
||||
|
|
||||
|
const ServerVoiceInfo& VoiceContext::GetInfo(std::size_t i) const { |
||||
|
ASSERT(i < voice_count); |
||||
|
return voice_info.at(i); |
||||
|
} |
||||
|
|
||||
|
ServerVoiceInfo& VoiceContext::GetSortedInfo(std::size_t i) { |
||||
|
ASSERT(i < voice_count); |
||||
|
return *sorted_voice_info.at(i); |
||||
|
} |
||||
|
|
||||
|
const ServerVoiceInfo& VoiceContext::GetSortedInfo(std::size_t i) const { |
||||
|
ASSERT(i < voice_count); |
||||
|
return *sorted_voice_info.at(i); |
||||
|
} |
||||
|
|
||||
|
s32 VoiceContext::DecodePcm16(s32* output_buffer, ServerWaveBuffer* wave_buffer, s32 channel, |
||||
|
s32 channel_count, s32 buffer_offset, s32 sample_count, |
||||
|
Core::Memory::Memory& memory) { |
||||
|
if (wave_buffer->buffer_address == 0) { |
||||
|
return 0; |
||||
|
} |
||||
|
if (wave_buffer->buffer_size == 0) { |
||||
|
return 0; |
||||
|
} |
||||
|
if (wave_buffer->end_sample_offset < wave_buffer->start_sample_offset) { |
||||
|
return 0; |
||||
|
} |
||||
|
|
||||
|
const auto samples_remaining = |
||||
|
(wave_buffer->end_sample_offset - wave_buffer->start_sample_offset) - buffer_offset; |
||||
|
const auto start_offset = (wave_buffer->start_sample_offset + buffer_offset) * channel_count; |
||||
|
const auto buffer_pos = wave_buffer->buffer_address + start_offset; |
||||
|
|
||||
|
s16* buffer_data = reinterpret_cast<s16*>(memory.GetPointer(buffer_pos)); |
||||
|
|
||||
|
const auto samples_processed = std::min(sample_count, samples_remaining); |
||||
|
|
||||
|
// Fast path
|
||||
|
if (channel_count == 1) { |
||||
|
for (std::size_t i = 0; i < samples_processed; i++) { |
||||
|
output_buffer[i] = buffer_data[i]; |
||||
|
} |
||||
|
} else { |
||||
|
for (std::size_t i = 0; i < samples_processed; i++) { |
||||
|
output_buffer[i] = buffer_data[i * channel_count + channel]; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
return samples_processed; |
||||
|
} |
||||
|
|
||||
|
void VoiceContext::SortInfo() { |
||||
|
for (std::size_t i = 0; i < voice_count; i++) { |
||||
|
sorted_voice_info[i] = &voice_info[i]; |
||||
|
} |
||||
|
|
||||
|
std::sort(sorted_voice_info.begin(), sorted_voice_info.end(), |
||||
|
[](const ServerVoiceInfo* lhs, const ServerVoiceInfo* rhs) { |
||||
|
const auto& lhs_in = lhs->GetInParams(); |
||||
|
const auto& rhs_in = rhs->GetInParams(); |
||||
|
// Sort by priority
|
||||
|
if (lhs_in.priority != rhs_in.priority) { |
||||
|
return lhs_in.priority > rhs_in.priority; |
||||
|
} else { |
||||
|
// If the priorities match, sort by sorting order
|
||||
|
return lhs_in.sorting_order > rhs_in.sorting_order; |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
void VoiceContext::UpdateStateByDspShared() { |
||||
|
std::memcpy(voice_states.data(), dsp_voice_states.data(), |
||||
|
sizeof(VoiceState) * dsp_voice_states.size()); |
||||
|
} |
||||
|
|
||||
|
} // namespace AudioCore
|
||||
@ -0,0 +1,291 @@ |
|||||
|
// Copyright 2020 yuzu Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include <array> |
||||
|
#include "audio_core/algorithm/interpolate.h" |
||||
|
#include "audio_core/codec.h" |
||||
|
#include "audio_core/common.h" |
||||
|
#include "common/bit_field.h" |
||||
|
#include "common/common_funcs.h" |
||||
|
#include "common/common_types.h" |
||||
|
|
||||
|
namespace Core::Memory { |
||||
|
class Memory; |
||||
|
} |
||||
|
|
||||
|
namespace AudioCore { |
||||
|
|
||||
|
class BehaviorInfo; |
||||
|
class VoiceContext; |
||||
|
|
||||
|
enum class SampleFormat : u8 { |
||||
|
Invalid = 0, |
||||
|
Pcm8 = 1, |
||||
|
Pcm16 = 2, |
||||
|
Pcm24 = 3, |
||||
|
Pcm32 = 4, |
||||
|
PcmFloat = 5, |
||||
|
Adpcm = 6, |
||||
|
}; |
||||
|
|
||||
|
enum class PlayState : u8 { |
||||
|
Started = 0, |
||||
|
Stopped = 1, |
||||
|
Paused = 2, |
||||
|
}; |
||||
|
|
||||
|
enum class ServerPlayState { |
||||
|
Play = 0, |
||||
|
Stop = 1, |
||||
|
RequestStop = 2, |
||||
|
Paused = 3, |
||||
|
}; |
||||
|
|
||||
|
struct BiquadFilterParameter { |
||||
|
bool enabled{}; |
||||
|
INSERT_PADDING_BYTES(1); |
||||
|
std::array<s16, 3> numerator{}; |
||||
|
std::array<s16, 2> denominator{}; |
||||
|
}; |
||||
|
static_assert(sizeof(BiquadFilterParameter) == 0xc, "BiquadFilterParameter is an invalid size"); |
||||
|
|
||||
|
struct WaveBuffer { |
||||
|
u64_le buffer_address{}; |
||||
|
u64_le buffer_size{}; |
||||
|
s32_le start_sample_offset{}; |
||||
|
s32_le end_sample_offset{}; |
||||
|
u8 is_looping{}; |
||||
|
u8 end_of_stream{}; |
||||
|
u8 sent_to_server{}; |
||||
|
INSERT_PADDING_BYTES(5); |
||||
|
u64 context_address{}; |
||||
|
u64 context_size{}; |
||||
|
INSERT_PADDING_BYTES(8); |
||||
|
}; |
||||
|
static_assert(sizeof(WaveBuffer) == 0x38, "WaveBuffer is an invalid size"); |
||||
|
|
||||
|
struct ServerWaveBuffer { |
||||
|
VAddr buffer_address{}; |
||||
|
std::size_t buffer_size{}; |
||||
|
s32 start_sample_offset{}; |
||||
|
s32 end_sample_offset{}; |
||||
|
bool is_looping{}; |
||||
|
bool end_of_stream{}; |
||||
|
VAddr context_address{}; |
||||
|
std::size_t context_size{}; |
||||
|
bool sent_to_dsp{true}; |
||||
|
}; |
||||
|
|
||||
|
struct BehaviorFlags { |
||||
|
BitField<0, 1, u16> is_played_samples_reset_at_loop_point; |
||||
|
BitField<1, 1, u16> is_pitch_and_src_skipped; |
||||
|
}; |
||||
|
static_assert(sizeof(BehaviorFlags) == 0x4, "BehaviorFlags is an invalid size"); |
||||
|
|
||||
|
struct VoiceState { |
||||
|
s64 played_sample_count{}; |
||||
|
s32 offset{}; |
||||
|
s32 wave_buffer_index{}; |
||||
|
std::array<bool, AudioCommon::MAX_WAVE_BUFFERS> is_wave_buffer_valid{}; |
||||
|
s32 wave_buffer_consumed{}; |
||||
|
std::array<s32, AudioCommon::MAX_SAMPLE_HISTORY> sample_history{}; |
||||
|
s32 fraction{}; |
||||
|
VAddr context_address{}; |
||||
|
Codec::ADPCM_Coeff coeff{}; |
||||
|
Codec::ADPCMState context{}; |
||||
|
std::array<s64, 2> biquad_filter_state{}; |
||||
|
std::array<s32, AudioCommon::MAX_MIX_BUFFERS> previous_samples{}; |
||||
|
u32 external_context_size{}; |
||||
|
bool is_external_context_used{}; |
||||
|
bool voice_dropped{}; |
||||
|
// TODO(ogniK): Hack until ADPCM streaming is implemented |
||||
|
std::vector<s16> adpcm_samples{}; |
||||
|
}; |
||||
|
|
||||
|
class VoiceChannelResource { |
||||
|
public: |
||||
|
struct InParams { |
||||
|
s32_le id{}; |
||||
|
std::array<float_le, AudioCommon::MAX_MIX_BUFFERS> mix_volume{}; |
||||
|
bool in_use{}; |
||||
|
INSERT_PADDING_BYTES(11); |
||||
|
}; |
||||
|
static_assert(sizeof(VoiceChannelResource::InParams) == 0x70, "InParams is an invalid size"); |
||||
|
}; |
||||
|
|
||||
|
class ServerVoiceChannelResource { |
||||
|
public: |
||||
|
explicit ServerVoiceChannelResource(s32 id); |
||||
|
~ServerVoiceChannelResource(); |
||||
|
|
||||
|
bool InUse() const; |
||||
|
float GetCurrentMixVolumeAt(std::size_t i) const; |
||||
|
float GetLastMixVolumeAt(std::size_t i) const; |
||||
|
void Update(VoiceChannelResource::InParams& in_params); |
||||
|
void UpdateLastMixVolumes(); |
||||
|
|
||||
|
const std::array<float, AudioCommon::MAX_MIX_BUFFERS>& GetCurrentMixVolume() const; |
||||
|
const std::array<float, AudioCommon::MAX_MIX_BUFFERS>& GetLastMixVolume() const; |
||||
|
|
||||
|
private: |
||||
|
s32 id{}; |
||||
|
std::array<float, AudioCommon::MAX_MIX_BUFFERS> mix_volume{}; |
||||
|
std::array<float, AudioCommon::MAX_MIX_BUFFERS> last_mix_volume{}; |
||||
|
bool in_use{}; |
||||
|
}; |
||||
|
|
||||
|
class VoiceInfo { |
||||
|
public: |
||||
|
struct InParams { |
||||
|
s32_le id{}; |
||||
|
u32_le node_id{}; |
||||
|
u8 is_new{}; |
||||
|
u8 is_in_use{}; |
||||
|
PlayState play_state{}; |
||||
|
SampleFormat sample_format{}; |
||||
|
s32_le sample_rate{}; |
||||
|
s32_le priority{}; |
||||
|
s32_le sorting_order{}; |
||||
|
s32_le channel_count{}; |
||||
|
float_le pitch{}; |
||||
|
float_le volume{}; |
||||
|
std::array<BiquadFilterParameter, 2> biquad_filter{}; |
||||
|
s32_le wave_buffer_count{}; |
||||
|
s16_le wave_buffer_head{}; |
||||
|
INSERT_PADDING_BYTES(6); |
||||
|
u64_le additional_params_address{}; |
||||
|
u64_le additional_params_size{}; |
||||
|
s32_le mix_id{}; |
||||
|
s32_le splitter_info_id{}; |
||||
|
std::array<WaveBuffer, 4> wave_buffer{}; |
||||
|
std::array<u32_le, 6> voice_channel_resource_ids{}; |
||||
|
// TODO(ogniK): Remaining flags |
||||
|
u8 is_voice_drop_flag_clear_requested{}; |
||||
|
u8 wave_buffer_flush_request_count{}; |
||||
|
INSERT_PADDING_BYTES(2); |
||||
|
BehaviorFlags behavior_flags{}; |
||||
|
INSERT_PADDING_BYTES(16); |
||||
|
}; |
||||
|
static_assert(sizeof(VoiceInfo::InParams) == 0x170, "InParams is an invalid size"); |
||||
|
|
||||
|
struct OutParams { |
||||
|
u64_le played_sample_count{}; |
||||
|
u32_le wave_buffer_consumed{}; |
||||
|
u8 voice_dropped{}; |
||||
|
INSERT_PADDING_BYTES(3); |
||||
|
}; |
||||
|
static_assert(sizeof(VoiceInfo::OutParams) == 0x10, "OutParams is an invalid size"); |
||||
|
}; |
||||
|
|
||||
|
class ServerVoiceInfo { |
||||
|
public: |
||||
|
struct InParams { |
||||
|
bool in_use{}; |
||||
|
bool is_new{}; |
||||
|
bool should_depop{}; |
||||
|
SampleFormat sample_format{}; |
||||
|
s32 sample_rate{}; |
||||
|
s32 channel_count{}; |
||||
|
s32 id{}; |
||||
|
s32 node_id{}; |
||||
|
s32 mix_id{}; |
||||
|
ServerPlayState current_playstate{}; |
||||
|
ServerPlayState last_playstate{}; |
||||
|
s32 priority{}; |
||||
|
s32 sorting_order{}; |
||||
|
float pitch{}; |
||||
|
float volume{}; |
||||
|
float last_volume{}; |
||||
|
std::array<BiquadFilterParameter, AudioCommon::MAX_BIQUAD_FILTERS> biquad_filter{}; |
||||
|
s32 wave_buffer_count{}; |
||||
|
s16 wave_bufffer_head{}; |
||||
|
INSERT_PADDING_BYTES(2); |
||||
|
BehaviorFlags behavior_flags{}; |
||||
|
VAddr additional_params_address{}; |
||||
|
std::size_t additional_params_size{}; |
||||
|
std::array<ServerWaveBuffer, AudioCommon::MAX_WAVE_BUFFERS> wave_buffer{}; |
||||
|
std::array<s32, AudioCommon::MAX_CHANNEL_COUNT> voice_channel_resource_id{}; |
||||
|
s32 splitter_info_id{}; |
||||
|
u8 wave_buffer_flush_request_count{}; |
||||
|
bool voice_drop_flag{}; |
||||
|
bool buffer_mapped{}; |
||||
|
std::array<bool, AudioCommon::MAX_BIQUAD_FILTERS> was_biquad_filter_enabled{}; |
||||
|
}; |
||||
|
|
||||
|
struct OutParams { |
||||
|
s64 played_sample_count{}; |
||||
|
s32 wave_buffer_consumed{}; |
||||
|
}; |
||||
|
|
||||
|
ServerVoiceInfo(); |
||||
|
~ServerVoiceInfo(); |
||||
|
void Initialize(); |
||||
|
void UpdateParameters(const VoiceInfo::InParams& voice_in, BehaviorInfo& behavior_info); |
||||
|
void UpdateWaveBuffers(const VoiceInfo::InParams& voice_in, |
||||
|
std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT>& voice_states, |
||||
|
BehaviorInfo& behavior_info); |
||||
|
void UpdateWaveBuffer(ServerWaveBuffer& out_wavebuffer, const WaveBuffer& in_wave_buffer, |
||||
|
SampleFormat sample_format, bool is_buffer_valid, |
||||
|
BehaviorInfo& behavior_info); |
||||
|
void WriteOutStatus(VoiceInfo::OutParams& voice_out, VoiceInfo::InParams& voice_in, |
||||
|
std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT>& voice_states); |
||||
|
|
||||
|
const InParams& GetInParams() const; |
||||
|
InParams& GetInParams(); |
||||
|
|
||||
|
const OutParams& GetOutParams() const; |
||||
|
OutParams& GetOutParams(); |
||||
|
|
||||
|
bool ShouldSkip() const; |
||||
|
bool UpdateForCommandGeneration(VoiceContext& voice_context); |
||||
|
void ResetResources(VoiceContext& voice_context); |
||||
|
bool UpdateParametersForCommandGeneration( |
||||
|
std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT>& dsp_voice_states); |
||||
|
void FlushWaveBuffers(u8 flush_count, |
||||
|
std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT>& dsp_voice_states, |
||||
|
s32 channel_count); |
||||
|
|
||||
|
private: |
||||
|
std::vector<s16> stored_samples; |
||||
|
InParams in_params{}; |
||||
|
OutParams out_params{}; |
||||
|
|
||||
|
bool HasValidWaveBuffer(const VoiceState* state) const; |
||||
|
}; |
||||
|
|
||||
|
class VoiceContext { |
||||
|
public: |
||||
|
VoiceContext(std::size_t voice_count); |
||||
|
~VoiceContext(); |
||||
|
|
||||
|
std::size_t GetVoiceCount() const; |
||||
|
ServerVoiceChannelResource& GetChannelResource(std::size_t i); |
||||
|
const ServerVoiceChannelResource& GetChannelResource(std::size_t i) const; |
||||
|
VoiceState& GetState(std::size_t i); |
||||
|
const VoiceState& GetState(std::size_t i) const; |
||||
|
VoiceState& GetDspSharedState(std::size_t i); |
||||
|
const VoiceState& GetDspSharedState(std::size_t i) const; |
||||
|
ServerVoiceInfo& GetInfo(std::size_t i); |
||||
|
const ServerVoiceInfo& GetInfo(std::size_t i) const; |
||||
|
ServerVoiceInfo& GetSortedInfo(std::size_t i); |
||||
|
const ServerVoiceInfo& GetSortedInfo(std::size_t i) const; |
||||
|
|
||||
|
s32 DecodePcm16(s32* output_buffer, ServerWaveBuffer* wave_buffer, s32 channel, |
||||
|
s32 channel_count, s32 buffer_offset, s32 sample_count, |
||||
|
Core::Memory::Memory& memory); |
||||
|
void SortInfo(); |
||||
|
void UpdateStateByDspShared(); |
||||
|
|
||||
|
private: |
||||
|
std::size_t voice_count{}; |
||||
|
std::vector<ServerVoiceChannelResource> voice_channel_resources{}; |
||||
|
std::vector<VoiceState> voice_states{}; |
||||
|
std::vector<VoiceState> dsp_voice_states{}; |
||||
|
std::vector<ServerVoiceInfo> voice_info{}; |
||||
|
std::vector<ServerVoiceInfo*> sorted_voice_info{}; |
||||
|
}; |
||||
|
|
||||
|
} // namespace AudioCore |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue