adpcm.h 399 Bytes
/*
** adpcm.h - include file for adpcm coder.
**
** Version 1.0, 7-Jul-92.
*/

#ifndef ADPCM_H
#define ADPCM_H

struct adpcm_state {
    short	valprev;	/* Previous output value */
    char	index;		/* Index into stepsize table */
};

void adpcm_coder (int16_t [], u_int8_t [], int, struct adpcm_state *);
void adpcm_decoder (u_int8_t [], int16_t [], int, struct adpcm_state *);

#endif /* ADPCM_H */