2001-12-26 06:13:17 +00:00
|
|
|
#ifndef ADPCM_H
|
|
|
|
#define ADPCM_H
|
|
|
|
|
2001-12-28 06:47:15 +00:00
|
|
|
#define IMA_ADPCM_PREAMBLE_SIZE 2
|
2001-12-26 06:13:17 +00:00
|
|
|
#define IMA_ADPCM_BLOCK_SIZE 0x22
|
2001-12-28 06:47:15 +00:00
|
|
|
#define IMA_ADPCM_SAMPLES_PER_BLOCK \
|
|
|
|
((IMA_ADPCM_BLOCK_SIZE - IMA_ADPCM_PREAMBLE_SIZE) * 2)
|
2001-12-26 06:13:17 +00:00
|
|
|
|
2001-12-28 06:47:15 +00:00
|
|
|
#define MS_ADPCM_PREAMBLE_SIZE 7
|
2001-12-27 05:09:43 +00:00
|
|
|
#define MS_ADPCM_BLOCK_SIZE 256
|
2001-12-28 06:47:15 +00:00
|
|
|
#define MS_ADPCM_SAMPLES_PER_BLOCK \
|
|
|
|
((MS_ADPCM_BLOCK_SIZE - MS_ADPCM_PREAMBLE_SIZE) * 2)
|
|
|
|
|
|
|
|
// pretend there's such a thing as mono for this format
|
|
|
|
#define FOX62_ADPCM_PREAMBLE_SIZE 8
|
|
|
|
#define FOX62_ADPCM_BLOCK_SIZE 0x400
|
|
|
|
#define FOX62_ADPCM_SAMPLES_PER_BLOCK \
|
|
|
|
((FOX62_ADPCM_BLOCK_SIZE - FOX62_ADPCM_PREAMBLE_SIZE) * 2)
|
2001-12-26 06:13:17 +00:00
|
|
|
|
2001-12-27 05:09:43 +00:00
|
|
|
int ima_adpcm_decode_block(unsigned short *output, unsigned char *input,
|
|
|
|
int channels);
|
|
|
|
int ms_adpcm_decode_block(unsigned short *output, unsigned char *input,
|
|
|
|
int channels);
|
2001-12-28 06:47:15 +00:00
|
|
|
int fox62_adpcm_decode_block(unsigned short *output, unsigned char *input,
|
|
|
|
int channels);
|
2001-12-26 06:13:17 +00:00
|
|
|
|
|
|
|
#endif
|