#pragma once #include #include "audio/dsp_shared_mem.hpp" #include "helpers.hpp" namespace Audio { using SampleFormat = HLE::SourceConfiguration::Configuration::Format; using SourceType = HLE::SourceConfiguration::Configuration::MonoOrStereo; class DSPMixer { public: template using Sample = std::array; template using Frame = std::array, 160>; template using MonoFrame = Frame; template using StereoFrame = Frame; template using QuadFrame = Frame; // Internally the DSP uses four channels when mixing. // Neatly, QuadFrame means that every sample is a uint32x4 value, which is particularly nice for SIMD mixing using IntermediateMix = QuadFrame; private: using ChannelFormat = HLE::DspConfiguration::OutputFormat; // The audio from each DSP voice is converted to quadraphonic and then fed into 3 intermediate mixing stages // Two of these intermediate mixers (second and third) are used for effects, including custom effects done on the CPU static constexpr usize mixerStageCount = 3; public: ChannelFormat channelFormat = ChannelFormat::Stereo; std::array volumes; std::array enableAuxStages; void reset() { channelFormat = ChannelFormat::Stereo; volumes.fill(0.0); enableAuxStages.fill(false); } }; } // namespace Audio