Free Electron
sample_cvt.h
1 #ifndef SAMPLE_CVT_H
2 #define SAMPLE_CVT_H
3 
4 #include "AL/al.h"
5 #include "alBuffer.h"
6 
7 extern const ALshort muLawDecompressionTable[256];
8 extern const ALshort aLawDecompressionTable[256];
9 
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 
15 #endif /* SAMPLE_CVT_H */