mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
15 lines
311 B
C
15 lines
311 B
C
#ifndef ADPCM_H
|
|
#define ADPCM_H
|
|
|
|
typedef struct AdpcmADecoderState
|
|
{
|
|
int jediTable[49 * 16];
|
|
int cursignal;
|
|
int delta;
|
|
} AdpcmADecoderState;
|
|
|
|
void adpcmAInit(AdpcmADecoderState* decoder);
|
|
void adpcmADecode(AdpcmADecoderState* decoder, const char* restrict in, short* restrict out, int len);
|
|
|
|
#endif//ADPCM_H
|