Torque3D/Engine/lib/openal-soft/OpenAL32/Include/sample_cvt.h

16 lines
494 B
C
Raw Normal View History

2016-10-22 09:22:33 +10:00
#ifndef SAMPLE_CVT_H
#define SAMPLE_CVT_H
#include "AL/al.h"
#include "alBuffer.h"
2018-05-09 20:48:18 +10:00
extern const ALshort muLawDecompressionTable[256];
extern const ALshort aLawDecompressionTable[256];
void Convert_ALshort_ALima4(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
ALsizei align);
void Convert_ALshort_ALmsadpcm(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
ALsizei align);
2016-10-22 09:22:33 +10:00
#endif /* SAMPLE_CVT_H */