diff options
| author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2021-06-26 23:04:40 +0100 |
|---|---|---|
| committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2021-07-01 06:01:01 +0100 |
| commit | b455043e45737345fe73d118947db1684bd248ea (patch) | |
| tree | c05414e81eff4b012bd1b33076fb60da16aace54 /src/audio_core/command_generator.h | |
| parent | 0857d6a3dbcaeb30b51326419fb56d9b543601f1 (diff) | |
Fix XC2/VOEZ crashing, add audio looping and a few misc fixes
Diffstat (limited to 'src/audio_core/command_generator.h')
| -rw-r--r-- | src/audio_core/command_generator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio_core/command_generator.h b/src/audio_core/command_generator.h index 2ebb755b0..673e4fbef 100644 --- a/src/audio_core/command_generator.h +++ b/src/audio_core/command_generator.h @@ -86,10 +86,10 @@ private: std::vector<u8>& work_buffer); void UpdateI3dl2Reverb(I3dl2ReverbParams& info, I3dl2ReverbState& state, bool should_clear); // 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); + s32 DecodePcm16(ServerVoiceInfo& voice_info, VoiceState& dsp_state, s32 sample_start_offset, + s32 sample_end_offset, s32 sample_count, s32 channel, std::size_t mix_offset); + s32 DecodeAdpcm(ServerVoiceInfo& voice_info, VoiceState& dsp_state, s32 sample_start_offset, + s32 sample_end_offset, 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); |
