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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*====================================================================*/
  2. /*         MPEG-4 Audio (ISO/IEC 14496-3) Copyright Header            */
  3. /*====================================================================*/
  4. /*
  5. This software module was originally developed by Rakesh Taori and Andy
  6. Gerrits (Philips Research Laboratories, Eindhoven, The Netherlands) in
  7. the course of development of the MPEG-4 Audio (ISO/IEC 14496-3). This
  8. software module is an implementation of a part of one or more MPEG-4
  9. Audio (ISO/IEC 14496-3) tools as specified by the MPEG-4 Audio
  10. (ISO/IEC 14496-3). ISO/IEC gives users of the MPEG-4 Audio (ISO/IEC
  11. 14496-3) free license to this software module or modifications thereof
  12. for use in hardware or software products claiming conformance to the
  13. MPEG-4 Audio (ISO/IEC 14496-3). Those intending to use this software
  14. module in hardware or software products are advised that its use may
  15. infringe existing patents. The original developer of this software
  16. module and his/her company, the subsequent editors and their
  17. companies, and ISO/IEC have no liability for use of this software
  18. module or modifications thereof in an implementation. Copyright is not
  19. released for non MPEG-4 Audio (ISO/IEC 14496-3) conforming products.
  20. CN1 retains full right to use the code for his/her own purpose, assign
  21. or donate the code to a third party and to inhibit third parties from
  22. using the code for non MPEG-4 Audio (ISO/IEC 14496-3) conforming
  23. products.  This copyright notice must be included in all copies or
  24. derivative works. Copyright 1996.
  25. */
  26. /*====================================================================*/
  27. /*======================================================================*/
  28. /*                                                                      */
  29. /*      INCLUDE_FILE:   PHI_LPC.H                                       */
  30. /*      PACKAGE:        WDBxx                                           */
  31. /*      COMPONENT:      Prototypes of Linear Prediction Subroutines     */
  32. /*                                                                      */
  33. /*======================================================================*/
  34. #ifndef _phi_nec_lpc_h_
  35. #define _phi_nec_lpc_h_
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. /*======================================================================*/
  40. /*   Function Prototype: celp_lpc_analysis_bws                          */
  41. /*======================================================================*/
  42. void
  43. celp_lpc_analysis_bws
  44. (
  45. float PP_InputSignal[],         /* In:  Input Signal                    */
  46. float lpc_coefficients[],       /* Out: LPC Coefficients[0..lpc_order-1]*/
  47. float *first_order_lpc_par,     /* Out: a_parameter for 1st-order fit   */
  48. long  frame_size,               /* In:  Number of samples in frame      */
  49. long  window_offsets[],         /* In:  offset for window w.r.t curr. fr*/
  50. long  window_sizes[],           /* In:  LPC Analysis-Window Size        */
  51. long  lpc_order,                /* In:  Order of LPC                    */
  52. long  n_lpc_analysis            /* In:  Number of LP analysis/frame     */
  53. ); 
  54. /*======================================================================*/
  55. /*   Function Prototype: NEC_InitLpcAnalysisEncoder                     */
  56. /*======================================================================*/
  57. void
  58. NEC_InitLpcAnalysisEncoder
  59. (
  60. long  win_size[],               /* In:  LPC Analysis-Window Size        */
  61. long  n_lpc_analysis,           /* In:  Number of LP analysis/frame     */
  62. long  order,                    /* In:  Order of LPC                    */
  63. float gamma_be,                 /* In:  Bandwidth Expansion Coefficient */
  64. long  bit_rate                  /* In:  Bit Rate                        */
  65. );
  66. /*======================================================================*/
  67. /* Function Prototype: NEC_FreeLpcAnalysisEncoder                       */
  68. /*======================================================================*/
  69. void
  70. NEC_FreeLpcAnalysisEncoder
  71. (
  72. long n_lpc_analysis             /* In: Number of LP analysis/frame */
  73. );
  74. #ifdef __cplusplus
  75. }
  76. #endif
  77. #endif  /* #ifndef _phi_nec_lpc_h_ */
  78. /*======================================================================*/
  79. /*      H I S T O R Y                                                   */
  80. /*======================================================================*/
  81. /* 17-04-96 R. Taori  Initial Version                                   */
  82. /* 30-07-96 R. Taori  Modified interface  to meet the MPEG-4 requirement*/
  83. /* 30-08-96 R. Taori  Prefixed "PHI_" to several subroutines(MPEG req.) */
  84. /* 07-11-96 N. Tanaka (Panasonic)                                       */
  85. /*                    Added several modules for narrowband coder (PAN_) */