123456789101112131415161718192021222324252627282930313233343536373839404142 |
-
- #ifndef __iLBC_ILBCDECODE_H
- #define __iLBC_ILBCDECODE_H
- #include "iLBC_define.h"
- short initDecode(
- iLBC_Dec_Inst_t *iLBCdec_inst,
- int mode,
- int use_enhancer
- );
- void iLBC_decode(
- float *decblock,
- unsigned char *bytes,
- iLBC_Dec_Inst_t *iLBCdec_inst,
- int mode
- );
- #endif
|