summaryrefslogtreecommitdiffstats
path: root/src/audio_core/codec.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-25 20:18:09 +0200
committerLioncash <mathew1800@gmail.com>2020-09-25 20:24:25 +0200
commit7c0908f301867b7f8667d7720094a3ad3616dd53 (patch)
tree598283935dbaebaab37c5ab660ab05c696c35971 /src/audio_core/codec.h
parentMerge pull request #4717 from lioncash/debug (diff)
downloadyuzu-7c0908f301867b7f8667d7720094a3ad3616dd53.tar
yuzu-7c0908f301867b7f8667d7720094a3ad3616dd53.tar.gz
yuzu-7c0908f301867b7f8667d7720094a3ad3616dd53.tar.bz2
yuzu-7c0908f301867b7f8667d7720094a3ad3616dd53.tar.lz
yuzu-7c0908f301867b7f8667d7720094a3ad3616dd53.tar.xz
yuzu-7c0908f301867b7f8667d7720094a3ad3616dd53.tar.zst
yuzu-7c0908f301867b7f8667d7720094a3ad3616dd53.zip
Diffstat (limited to 'src/audio_core/codec.h')
-rw-r--r--src/audio_core/codec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/codec.h b/src/audio_core/codec.h
index ef2ce01a8..9507abb1b 100644
--- a/src/audio_core/codec.h
+++ b/src/audio_core/codec.h
@@ -38,7 +38,7 @@ using ADPCM_Coeff = std::array<s16, 16>;
* @param state ADPCM state, this is updated with new state
* @return Decoded stereo signed PCM16 data, sample_count in length
*/
-std::vector<s16> DecodeADPCM(const u8* const data, std::size_t size, const ADPCM_Coeff& coeff,
+std::vector<s16> DecodeADPCM(const u8* data, std::size_t size, const ADPCM_Coeff& coeff,
ADPCMState& state);
}; // namespace AudioCore::Codec