phi_gxit.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_GXIT.H                                      */
  30. /*      PACKAGE:        WDBxx                                           */
  31. /*      COMPONENT:      Excitation Generation Module                    */
  32. /*                                                                      */
  33. /*======================================================================*/
  34. #ifndef _phi_gxit_h_
  35. #define _phi_gxit_h_
  36. #include "phi_priv.h"
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. /*======================================================================*/
  41. /* Function Prototype:  PHI_init_excitation_generation                  */
  42. /*======================================================================*/
  43. void 
  44. PHI_init_excitation_generation
  45. (
  46. const long max_lag,     /* In:Maximum permitted lag in the adaptive cbk */
  47. const long sbfrm_size,  /* In:Size of subframe in samples               */
  48. const long RPE_configuration, /* In:Confguration                        */
  49. PHI_PRIV_TYPE * PHI_Priv /* In/Out: private data (instance context)    */
  50. );
  51. /*======================================================================*/
  52. /* Function  Prototype: celp_excitation_generation                      */
  53. /*======================================================================*/
  54. void
  55. celp_excitation_generation
  56. (
  57.                                 /* -------------------------------------*/
  58.                                 /* INPUT PARAMETERS                     */
  59.                                 /* -------------------------------------*/
  60. unsigned long  shape_indices[], /* Lag indices for Adaptive & Fixed cbks*/
  61. unsigned long  gain_indices[],  /* Gains for Adaptive & Fixed cbks      */
  62. long  num_shape_cbks,           /* Number of shape codebooks            */
  63. long  num_gain_cbks,            /* Number of gain codebooks             */
  64. unsigned long  rms_index,       /* NOT USED HERE: RMS value subframe ?? */
  65. float int_Qlpc_coefficients[],  /* Interpolated LPC coeffs of subframe  */
  66. long  lpc_order,                /* Order of LPC                         */
  67. long  sbfrm_size,               /* In: Number of samples in the subframe*/
  68. long  n_subframes,              /* In: Number of subframes              */
  69. unsigned long  signal_mode,     /* In: Configuration Input              */
  70. long  frame_bit_allocation[],   /* In: Configuration Input              */
  71.                                 /* -------------------------------------*/
  72.                                 /* OUTPUT PARAMETERS                    */
  73.                                 /* -------------------------------------*/
  74. float excitation[],             /* Out: Excitation Signal               */
  75. long  *acb_delay,               /* NOT USED HERE: Pitch for post filter?*/
  76. float *adaptive_gain,            /* NOT USED HERE: ????                  */
  77. PHI_PRIV_TYPE * PHI_Priv        /* In/Out: private data (instance context)*/
  78. );
  79. /*======================================================================*/
  80. /* Function Prototype: PHI_close_excitation_generation                  */
  81. /*======================================================================*/
  82. void PHI_close_excitation_generation(
  83.      PHI_PRIV_TYPE * PHI_Priv        /* In: private data (instance context)*/
  84. );
  85. #ifdef __cplusplus
  86. }
  87. #endif
  88. #endif  /* #ifndef _phi_gxit_h_ */
  89. /*======================================================================*/
  90. /*      H I S T O R Y                                                   */
  91. /*======================================================================*/
  92. /* 17-04-96 R. Taori  Initial Version                                   */
  93. /* 30-08-96 R. Taori  Modified interface to meet Tampere requirements   */