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

流媒体/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 by NT */
  28. #ifndef _celp_proto_enc_h_
  29. #define _celp_proto_enc_h_
  30. /* #include "libtsp.h" */  /* HP 971117 */
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. void nb_abs_lpc_quantizer (
  35.     float lpc_coefficients[], /* in: LPC */
  36.     float int_Qlpc_coefficients[], /* out: quantized & interpolated LPC */ 
  37.     long lpc_indices[],  /* out: LPC code indices */
  38.     long lpc_order, /* in: order of LPC */
  39.     long num_lpc_indices,    /* in: number of LPC indices */
  40.     long n_lpc_analysis,     /* in: number of LP analysis per frame */
  41.     long n_subframes,        /* in: number of subframes */
  42.     long *interpolation_flag, /* out: interpolation flag */
  43.     long signal_mode, /* inp: signal mode */
  44.     long frame_bit_allocation[], /* in: bit number for each index */
  45.     long sampling_frequency, /* in: sampling frequency */
  46.     float *prev_Qlsp_coefficients
  47. );
  48. void bws_lpc_quantizer(
  49.         float   lpc_coefficients_16[],                  
  50.         float   int_Qlpc_coefficients_16[],     
  51.         long    lpc_indices_16[],                               
  52.         long    lpc_order_8,
  53.         long    lpc_order_16,
  54.         long    num_lpc_indices_16,
  55.         long    n_lpc_analysis_16,
  56.         long    n_subframes_16,
  57.         float   buf_Qlsp_coefficients_16[],                  
  58.         float   prev_Qlsp_coefficients_16[],
  59.         long    frame_bit_allocation[]
  60. );
  61. void nb_abs_excitation_analysis (
  62. float PP_InputSignal[],        /* in: preprocessed input signal */
  63. float lpc_residual[],          /* in: LP residual signal */
  64. float int_Qlpc_coefficients[], /* in: interpolated LPC */
  65. long lpc_order,                /* in: order of LPC */
  66. float Wnum_coeff[],            /* in: weighting coeff.(numerator) */
  67. float Wden_coeff[],            /* in: weighting coeff.(denominator) */
  68. float first_order_lpc_par,     /* in: first order LPC */
  69. long lag_candidates[],         /* in: lag candidates */
  70. long n_lag_candidates,         /* in: number of lag candididates */
  71. long frame_size,               /* in: frame size */
  72. long sbfrm_size,               /* in: subframe size */
  73. long n_subframes,              /* in: number of subframes */
  74. long *signal_mode,             /* out: signal mode */
  75. long frame_bit_allocation[],   /* in: bit number for each index */
  76. long shape_indices[],          /* out: shape code indices */
  77. long gain_indices[],           /* out: gain code indices */
  78. long num_shape_cbks,           /* in: number of shape codebooks */
  79. long num_gain_cbks,            /* in: number of gain codebooks */
  80. long *rms_index,               /* out: RMS code index */
  81. float decoded_excitation[],    /* out: decoded excitation */
  82. long num_enhstages,
  83. float bws_mp_exc[],
  84.         long SampleRateMode
  85. );
  86. void bws_excitation_analysis(
  87. float PP_InputSignal[],        /* in: preprocessed input signal */
  88. float int_Qlpc_coefficients[], /* in: interpolated LPC */
  89. long lpc_order,                /* in: order of LPC */
  90. float Wnum_coeff[],            /* in: weighting coeff.(numerator) */
  91. float Wden_coeff[],            /* in: weighting coeff.(denominator) */
  92. long frame_size,               /* in: frame size */
  93. long sbfrm_size,               /* in: subframe size */
  94. long n_subframes,              /* in: number of subframes */
  95. long signal_mode,              /* in: signal mode */
  96. long frame_bit_allocation[],   /* in: bit number for each index */
  97. long shape_indices[],          /* out: shape code indices */
  98. long gain_indices[],           /* out: gain code indices */
  99. long num_shape_cbks,           /* in: number of shape codebooks */
  100. long num_gain_cbks,            /* in: number of gain codebooks */
  101. float decoded_excitation[],    /* out: decoded excitation */
  102.         float bws_mp_exc[],
  103.         long  *acb_index_8,
  104. long  rms_index /* in: RMS code index */
  105. );
  106. void wb_celp_lsp_quantizer (
  107.     float lpc_coefficients[], /* in: LPC */
  108.     float int_Qlpc_coefficients[], /* out: quantized & interpolated LPC */ 
  109.     long lpc_indices[],  /* out: LPC code indices */
  110.     long lpc_order, /* in: order of LPC */
  111.     long num_lpc_indices,    /* in: number of LPC indices */
  112.     long n_lpc_analysis,     /* in: number of LP analysis per frame */
  113.     long n_subframes,        /* in: number of subframes */
  114.     long *interpolation_flag, /* out: interpolation flag */
  115.     long signal_mode, /* inp: signal mode */
  116.     long frame_bit_allocation[], /* in: bit number for each index */
  117.     long sampling_frequency, /* in: sampling frequency */
  118.     float *prev_Qlsp_coefficients
  119. );
  120. #ifdef __cplusplus
  121. }
  122. #endif
  123. #endif