diff options
author | Chris Robinson <[email protected]> | 2023-02-14 08:38:25 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-02-14 08:39:30 -0800 |
commit | 5c8855b9a1849af855923aa1b87005febd01704b (patch) | |
tree | 0100feb60ef3cd3bca241d330ff219af2b76ec4e /alc | |
parent | a84efdc45936bcc4427af272b975c6a197081c22 (diff) |
Support MSADPCM samples in the mixer
Diffstat (limited to 'alc')
-rw-r--r-- | alc/effects/convolution.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alc/effects/convolution.cpp b/alc/effects/convolution.cpp index 1c5c3691..92b70323 100644 --- a/alc/effects/convolution.cpp +++ b/alc/effects/convolution.cpp @@ -86,6 +86,7 @@ void LoadSamples(float *RESTRICT dst, const al::byte *src, const size_t srcstep, HANDLE_FMT(FmtAlaw); /* FIXME: Handle ADPCM decoding here. */ case FmtIMA4: + case FmtMSADPCM: std::fill_n(dst, samples, 0.0f); break; } |