dec_if.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:1k
- /*
- *===================================================================
- * 3GPP AMR Wideband Floating-point Speech Codec
- *===================================================================
- */
- #ifndef DEC_IF_H
- #define DEC_IF_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "typedef.h"
- #define NB_SERIAL_MAX 61 /* max serial size */
- #define L_FRAME16k 320 /* Frame size at 16kHz */
- #define _good_frame 0
- #define _bad_frame 1
- #define _lost_frame 2
- #define _no_frame 3
- void D_IF_decode(void *st, UWord8 *bits, Word16 *synth, Word32 bfi);
- void * D_IF_init(void);
- void D_IF_exit(void *state);
- #ifdef __cplusplus
- }
- #endif
- #endif