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

Symbian

开发平台:

Visual C++

  1. /*
  2.  * ===================================================================
  3.  *  TS 26.104
  4.  *  R99   V3.4.0 2002-02
  5.  *  REL-4 V4.3.0 2002-02
  6.  *  3GPP AMR Floating-point Speech Codec
  7.  * ===================================================================
  8.  *
  9.  */
  10. /*
  11.  * interf_dec.h
  12.  *
  13.  *
  14.  * Project:
  15.  *    AMR Floating-Point Codec
  16.  *
  17.  * Contains:
  18.  *    Defines interface to AMR decoder
  19.  *
  20.  */
  21. #ifndef _interf_dec_h_
  22. #define _interf_dec_h_
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /*
  27.  * Function prototypes
  28.  */
  29. /*
  30.  * Conversion from packed bitstream to endoded parameters
  31.  * Decoding parameters to speech
  32.  */
  33. void Decoder_Interface_Decode( void *st,
  34. #ifndef ETSI
  35.       unsigned char *bits,
  36. #else
  37.       short *bits,
  38. #endif
  39.       short *synth, int bfi );
  40. /*
  41.  * Reserve and init. memory
  42.  */
  43. void *Decoder_Interface_init( void );
  44. /*
  45.  * Exit and free memory
  46.  */
  47. void Decoder_Interface_exit( void *state );
  48. #ifdef __cplusplus
  49. }
  50. #endif
  51. #endif