celp_proto_dec.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. This software module was originally developed by
  3. Naoya Tanaka (Matsushita Communication Industrial Co., Ltd.)
  4. and edited by
  5. in the course of development of the
  6. MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3.
  7. This software module is an implementation of a part of one or more
  8. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 Audio
  9. standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio standards
  10. free license to this software module or modifications thereof for use in
  11. hardware or software products claiming conformance to the MPEG-2 NBC/
  12. MPEG-4 Audio  standards. Those intending to use this software module in
  13. hardware or software products are advised that this use may infringe
  14. existing patents. The original developer of this software module and
  15. his/her company, the subsequent editors and their companies, and ISO/IEC
  16. have no liability for use of this software module or modifications
  17. thereof in an implementation. Copyright is not released for non
  18. MPEG-2 NBC/MPEG-4 Audio conforming products. The original developer
  19. retains full right to use the code for his/her  own purpose, assign or
  20. donate the code to a third party and to inhibit third party from using
  21. the code for non MPEG-2 NBC/MPEG-4 Audio conforming products.
  22. This copyright notice must be included in all copies or derivative works.
  23. Copyright (c)1996.
  24. */
  25. /* Function prototypes for VM3.0 */
  26. /* Last modified: 11/07/96 by NT */
  27. /*  06/16/97 NT */
  28. #ifndef _celp_proto_dec_h_
  29. #define _celp_proto_dec_h_
  30. /* #include "libtsp.h" */ /* HP 971117 */
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /* decoder function prototypes */
  35. void nb_abs_lpc_decode(
  36.     unsigned long lpc_indices[], /* in: LPC code indices */
  37.     float int_Qlpc_coefficients[], /* out: quantized & interpolated LPC*/ 
  38.     long lpc_order,         /* in: order of LPC */
  39.     long n_subframes,               /* in: number of subframes */
  40.     float *prev_Qlsp_coefficients
  41. );
  42. void bws_lpc_decoder(
  43.         unsigned long    lpc_indices_16[],                               
  44.         float   int_Qlpc_coefficients_16[],     
  45.         long    lpc_order_8,
  46.         long    lpc_order_16,
  47.         long    n_subframes_16,
  48.         float   buf_Qlsp_coefficients_16[],     
  49.         float   prev_Qlsp_coefficients_16[]
  50. );
  51. void nb_abs_excitation_generation(
  52. unsigned long shape_indices[],          /* in: shape code indices */
  53. unsigned long gain_indices[],           /* in: gain code indices */
  54. long num_shape_cbks,           /* in: number of shape codebooks */
  55.     long num_gain_cbks,            /* in: number of gain codebooks */
  56. unsigned long rms_index,                /* in: RMS code index */
  57. float int_Qlpc_coefficients[], /* in: interpolated LPC */
  58. long lpc_order,                /* in: order of LPC */
  59. long sbfrm_size,               /* in: subframe size */
  60. long n_subframes,              /* in: number of subframes */
  61. unsigned long signal_mode,              /* in: signal mode */
  62. long org_frame_bit_allocation[],   /* in: bit number for each index */
  63. float excitation[],            /* out: decoded excitation */
  64. float bws_mp_exc[],            /* out: decoded excitation */
  65. long *acb_delay,               /* out: adaptive code delay */
  66. float *adaptive_gain,          /* out: adaptive code gain */
  67.     long dec_enhstages,
  68.     long postfilter,
  69.     long SampleRateMode
  70. );
  71. void bws_excitation_generation(
  72. unsigned long shape_indices[],          /* in: shape code indices */
  73. unsigned long gain_indices[],           /* in: gain code indices */
  74. long num_shape_cbks,           /* in: number of shape codebooks */
  75.     long num_gain_cbks,            /* in: number of gain codebooks */
  76. unsigned long rms_index,                /* in: RMS code index */
  77. float int_Qlpc_coefficients[], /* in: interpolated LPC */
  78. long lpc_order,                /* in: order of LPC */
  79. long sbfrm_size,               /* in: subframe size */
  80. long n_subframes,              /* in: number of subframes */
  81. unsigned long signal_mode,              /* in: signal mode */
  82. long org_frame_bit_allocation[],   /* in: bit number for each index */
  83. float excitation[],            /* out: decoded excitation */
  84. float bws_mp_exc[],            /* in: decoded mp excitation */
  85. long acb_indx_8[],        /* in: acb_delay */
  86. long *acb_delay,               /* out: adaptive code delay */
  87. float *adaptive_gain,           /* out: adaptive code gain */
  88.     long postfilter
  89. );
  90. void nb_abs_postprocessing(
  91. float synth_signal[],  /* input */
  92. float PP_synth_signal[], /* output */
  93. float int_Qlpc_coefficients[], /* input */
  94. long lpc_order,  /* configuration input */
  95. long sbfrm_sizes,  /* configuration input */
  96. long acb_delay,  /* input */
  97. float adaptive_gain /* input */
  98. );
  99. void wb_celp_lsp_decode(
  100.     unsigned long lpc_indices[],  /* in: LPC code indices */
  101.     float int_Qlpc_coefficients[], /* out: quantized & interpolated LPC*/ 
  102.     long lpc_order,         /* in: order of LPC */
  103.     long n_subframes,               /* in: number of subframes */
  104.     float *prev_Qlsp_coefficients
  105. );
  106. #ifdef __cplusplus
  107. }
  108. #endif
  109. #endif