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

流媒体/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_POST.H                                      */
  30. /*      PACKAGE:        WDBxx                                           */
  31. /*      COMPONENT:      Post-processing Module                          */
  32. /*                                                                      */
  33. /*======================================================================*/
  34. #ifndef _phi_post_h_
  35. #define _phi_post_h_
  36. #include "phi_priv.h"
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. /*======================================================================*/
  41. /* Function Prototype: PHI_InitPostProcessor                            */
  42. /*======================================================================*/
  43. void                            /* Return Value: Void                   */
  44. PHI_InitPostProcessor
  45. (
  46. const long lpc_order,           /* In: Order of LPC                     */
  47. PHI_PRIV_TYPE *PHI_Priv         /* In/Out: private data (instance context)*/
  48. );
  49. /*======================================================================*/
  50. /* Function Prototype: PHI_ClosePostProcessor                           */
  51. /*======================================================================*/
  52. void                            /* Return Value: Void                   */
  53. PHI_ClosePostProcessor
  54. (
  55. PHI_PRIV_TYPE *PHI_Priv         /* In/Out: private data (instance context)*/
  56. );
  57. /*======================================================================*/
  58. /* Function Prototype: celp_postprocessing                              */
  59. /*======================================================================*/
  60. void                            /* Return Value: Void                   */
  61. celp_postprocessing
  62. (
  63. const float synth_signal[],          /*In:  Input sig [0..sbfrm_size -1]*/
  64.       float PP_synth_signal[],       /*Out: Postprocessed ooutput       */
  65. const float int_Qlpc_coefficients[], /*In:  Decoded LPC coefficients    */  
  66. const long  lpc_order,               /*In:  Order of LPC                */
  67. const long  sbfrm_size,              /*In:  #Samps to be processed      */
  68. const long  acb_delay,               /*In:  Pitch-like information      */
  69. const float adaptive_gain,            /*In:  DON'T KNOW WHY IT IS NEEDED */
  70. PHI_PRIV_TYPE *PHI_Priv         /* In/Out: private data (instance context)*/
  71. );
  72. #ifdef __cplusplus
  73. }
  74. #endif
  75. #endif  /* #ifndef _phi_post_h_ */
  76. /*======================================================================*/
  77. /*      H I S T O R Y                                                   */
  78. /*======================================================================*/
  79. /* 08-08-96 R. Taori  Initial Version                                   */