sample_cvt.h 494 B

123456789101112131415
  1. #ifndef SAMPLE_CVT_H
  2. #define SAMPLE_CVT_H
  3. #include "AL/al.h"
  4. #include "alBuffer.h"
  5. extern const ALshort muLawDecompressionTable[256];
  6. extern const ALshort aLawDecompressionTable[256];
  7. void Convert_ALshort_ALima4(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
  8. ALsizei align);
  9. void Convert_ALshort_ALmsadpcm(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
  10. ALsizei align);
  11. #endif /* SAMPLE_CVT_H */