diff options
author | Chris Robinson <[email protected]> | 2019-05-24 13:32:20 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-24 13:32:20 -0700 |
commit | 219f818b165d6997d6a2f1f8f0c5f88ba68a5db2 (patch) | |
tree | 2d048fdc7f8c4b8bf52bae79c557d87b8371a69c /OpenAL32/Include | |
parent | b4fbc271d297b084df310e827e241b44bf9532b3 (diff) |
Use al::byte for ADPCM decoders
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/sample_cvt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/sample_cvt.h b/OpenAL32/Include/sample_cvt.h index 4d742f1c..c8c1ad23 100644 --- a/OpenAL32/Include/sample_cvt.h +++ b/OpenAL32/Include/sample_cvt.h @@ -2,12 +2,12 @@ #define SAMPLE_CVT_H #include "AL/al.h" -#include "alBuffer.h" +#include "albyte.h" -void Convert_ALshort_ALima4(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len, +void Convert_ALshort_ALima4(ALshort *dst, const al::byte *src, ALsizei numchans, ALsizei len, ALsizei align); -void Convert_ALshort_ALmsadpcm(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len, +void Convert_ALshort_ALmsadpcm(ALshort *dst, const al::byte *src, ALsizei numchans, ALsizei len, ALsizei align); #endif /* SAMPLE_CVT_H */ |