1
0
Fork 0
forked from eden-emu/eden

audio_core: Apollo Part 1, AudioRenderer refactor

This commit is contained in:
David Marcec 2020-07-12 21:59:14 +10:00
parent bcb6b4e574
commit 81b2b4fbe9
26 changed files with 4235 additions and 744 deletions

View file

@ -38,4 +38,7 @@ inline std::vector<s16> Interpolate(InterpolationState& state, std::vector<s16>
return Interpolate(state, std::move(input), ratio);
}
/// Nintendo Switchs DSP resampling algorithm. Based on a single channel
void Resample(s32* output, const s32* input, s32 pitch, s32& fraction, std::size_t sample_count);
} // namespace AudioCore