phi_apre.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_APRE.H                                      */
  30. /*      PACKAGE:        WDBxx                                           */
  31. /*      COMPONENT:      Adaptive Codebook Preselection Module           */
  32. /*                                                                      */
  33. /*======================================================================*/
  34. #ifndef _phi_apre_h_
  35. #define _phi_apre_h_
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. /*======================================================================*/
  40. /* Function Prototype: PHI_allocate_energy_table                        */
  41. /*======================================================================*/
  42. void PHI_allocate_energy_table
  43. (
  44.     const long sbfrm_size,          /* In: Subframe size in samples     */
  45.     const long acbk_size,           /* In: Length of Adaptive Codebook  */
  46.     const long sac_search_step      /* In: Try every $1-th sample       */
  47.     
  48. );
  49.     
  50. /*======================================================================*/
  51. /* Function Prototype: PHI_cba_preselection                             */
  52. /*======================================================================*/
  53. void PHI_cba_preselection
  54. (
  55. const long  nos,       /* In:   Number of samples to be processed */
  56. const long  max_lag,      /* In:   Maximum Permitted Adapt cbk Lag      */
  57. const long  min_lag,      /* In:   Minimum Permitted Adapt cbk Lag      */
  58. const long  n_sbfrm_frm,  /* In:   Number of subframes in a frame       */
  59. const long  n_lags,       /* In:   Number of lag candidates     */
  60. const float ca[],       /* In:   Segment from adaptive codebook       */
  61. const float ta[],       /* In:   Backward filtered target signal      */
  62. const float a,         /* In:   Lpc Coefficients (weighted)      */
  63. long  pi[],        /* Out:  Result preselection: Lag candidates  */
  64. const long  n       /* In:   Subframe Counter (we need this)      */
  65.                    /*    For explanation :see philips proposal*/
  66. );
  67. /*======================================================================*/
  68. /* Function Prototype: PHI_free_energy_table                            */
  69. /*======================================================================*/
  70. void 
  71. PHI_free_energy_table
  72. (
  73.     const long sbfrm_size,          /* In: Subframe size in samples     */
  74.     const long acbk_size            /* In: Length of Adaptive Codebook  */
  75. );
  76. #ifdef __cplusplus
  77. }
  78. #endif
  79. #endif  /* #ifndef _phi_apre_h_ */
  80. /*======================================================================*/
  81. /*      H I S T O R Y                                                   */
  82. /*======================================================================*/
  83. /* 17-04-96 R. Taori  Initial Version                                   */