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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. This software module was originally developed by
  3. Toshiyuki Nomura (NEC Corporation)
  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. #ifndef nec_abs_proto_h_
  26. #define nec_abs_proto_h_
  27. #include "lpc_common.h"
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. void nec_mp_config(
  32.    long len, /* input */
  33.    long tgt_bit, /* input */
  34.    long *pos_bit, /* output */
  35.    long *sgn_bit ); /* output */
  36. void nec_abs_excitation_analysis (
  37. float InputSignal[], /* input */
  38. float LpcCoef[], /* input */
  39. float WnumCoef[], /* input */
  40. float WdenCoef[], /* input */
  41. long  shape_indices[], /* output */
  42. long  gain_indices[], /* output */
  43. long  *rms_index, /* output */
  44. long  *signal_mode, /* output */
  45. float decoded_excitation[], /* output */
  46. long  lpc_order, /* configuration input */
  47. long  frame_size,  /* configuration input */
  48. long  sbfrm_size,  /* configuration input */
  49. long  n_subframes, /* configuration input */
  50. long  frame_bit_allocation[], /* configuration input */
  51. long  num_shape_cbks, /* configuration input */
  52. long  num_gain_cbks, /* configuration input */
  53. long  n_enhstages, /* configuration input */
  54. float bws_mp_exc[],
  55.         long SampleRateMode );
  56. void nec_bws_excitation_analysis(
  57. float InputSignal[], /* input */
  58. float LpcCoef[], /* input */
  59. float WnumCoef[], /* input */
  60. float WdenCoef[], /* input */
  61. long  shape_indices[], /* output */
  62. long  gain_indices[], /* output */
  63. float decoded_excitation[], /* output */
  64. long  lpc_order, /* configuration input */
  65. long  sbfrm_size,  /* configuration input */
  66. long  n_subframes, /* configuration input */
  67. long  frame_bit_allocation[], /* configuration input */
  68. long  num_shape_cbks, /* configuration input */
  69. long  num_gain_cbks, /* configuration input */
  70. float bws_mp_exc[], /* input */
  71. long  *acb_index_8, /* input */
  72. long  rms_index, /* input */
  73. long  signal_mode /* input */
  74. );
  75. void nec_abs_excitation_generation(
  76. float LpcCoef[], /* input */
  77. unsigned long  shape_indices[], /* input */
  78. unsigned long  gain_indices[], /* input */
  79. unsigned long  rms_index, /* input */
  80. unsigned long  signal_mode, /* input */
  81. float decoded_excitation[], /* output */
  82. float *adapt_gain, /* output */
  83. long  *acb_delay, /* output */
  84. long  lpc_order, /* configuration input */
  85. long  sbfrm_size,  /* configuration input */
  86. long  n_subframes, /* configuration input */
  87. long  frame_bit_allocation[], /* configuration input */
  88. long  num_shape_cbks, /* configuration input */
  89. long  num_gain_cbks, /* configuration input */
  90. long  d_enhstages, /* configuration input */
  91. float bws_mp_exc[],
  92. long postfilter,
  93.         long SampleRateMode
  94. );
  95. void nec_bws_excitation_generation(
  96. float LpcCoef[], /* input */
  97. unsigned long  shape_indices[], /* input */
  98. unsigned long  gain_indices[], /* input */
  99. unsigned long  rms_index, /* input */
  100. unsigned long  signal_mode, /* input */
  101. float decoded_excitation[], /* output */
  102. float *adapt_gain, /* output */
  103. long  *acb_delay, /* output */
  104. long  lpc_order, /* configuration input */
  105. long  sbfrm_size,  /* configuration input */
  106. long  n_subframes, /* configuration input */
  107. long  frame_bit_allocation[], /* configuration input */
  108. long  num_shape_cbks, /* configuration input */
  109. long  num_gain_cbks, /* configuration input */
  110. float bws_mp_exc[],
  111. long acb_idx_8[],
  112. long postfilter
  113. );
  114. void nec_bws_lsp_decoder(
  115.      unsigned long indices[], /* input  */
  116.      float qlsp8[], /* input  */
  117.      float qlsp[], /* output  */
  118.      long lpc_order, /* configuration input */
  119.      long lpc_order_8 ); /* configuration input */
  120. void nec_bws_lsp_quantizer(
  121.        float lsp[], /* input  */
  122.        float qlsp8[], /* input  */
  123.        float qlsp[], /* output  */
  124.        long indices[], /* output  */
  125.        long frame_bit_allocation[], /* configuration input */
  126.        long lpc_order, /* configuration input */
  127.        long lpc_order_8, /* configuration input */
  128.        long num_lpc_indices);  /* configuration input */
  129. void nec_lpf_down( float xin[], float xout[], int len );
  130.  
  131. #ifdef __cplusplus
  132. }
  133. #endif
  134. #endif