🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
577 B

  1. #ifndef SAMPLE_CVT_H
  2. #define SAMPLE_CVT_H
  3. #include "AL/al.h"
  4. #include "alBuffer.h"
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. extern const ALshort muLawDecompressionTable[256];
  9. extern const ALshort aLawDecompressionTable[256];
  10. void Convert_ALshort_ALima4(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
  11. ALsizei align);
  12. void Convert_ALshort_ALmsadpcm(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
  13. ALsizei align);
  14. #ifdef __cplusplus
  15. } // extern "C"
  16. #endif
  17. #endif /* SAMPLE_CVT_H */