dec_if.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:1k
源码类别:

Symbian

开发平台:

Visual C++

  1. /*
  2.  *===================================================================
  3.  *  3GPP AMR Wideband Floating-point Speech Codec
  4.  *===================================================================
  5.  */
  6. #ifndef DEC_IF_H
  7. #define DEC_IF_H
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. #include "typedef.h"
  12. #define NB_SERIAL_MAX   61    /* max serial size      */
  13. #define L_FRAME16k      320   /* Frame size at 16kHz  */
  14. #define _good_frame  0
  15. #define _bad_frame   1
  16. #define _lost_frame  2
  17. #define _no_frame    3
  18. void D_IF_decode(void *st, UWord8 *bits, Word16 *synth, Word32 bfi);
  19. void * D_IF_init(void);
  20. void D_IF_exit(void *state);
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif