blob: 35ead20cc21067835894482f39af48269f4c8658 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SAMPLE_CVT_H
#define SAMPLE_CVT_H
#include "AL/al.h"
#include "alBuffer.h"
extern const ALshort muLawDecompressionTable[256];
extern const ALshort aLawDecompressionTable[256];
void ConvertData(ALvoid *dst, enum UserFmtType dstType, const ALvoid *src, enum UserFmtType srcType, ALsizei numchans, ALsizei len, ALsizei align);
#endif /* SAMPLE_CVT_H */
|