phi_priv.c
上传用户: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. /*      SOURCE_FILE:    PHI_PRIV.C                                    */
  30. /*      COMPONENT:      Private data used within Philips CELP decoder */
  31. /*                                                                    */
  32. /*====================================================================*/
  33.     
  34. /*====================================================================*/
  35. /*      I N C L U D E S                                               */
  36. /*====================================================================*/
  37. #include "phi_priv.h"      
  38. /*======================================================================*/
  39. /*      G L O B A L   F U N C T I O N   D E F I N I T I O N S           */
  40. /*======================================================================*/
  41. /*======================================================================*/
  42. /* Initialise private data                                                        */
  43. /*======================================================================*/
  44. void PHI_Init_Private_Data(PHI_PRIV_TYPE *PHI_Priv)
  45. {
  46. /*--- phi_gxit.c ---*/
  47.     PHI_Priv->PHI_sfrm_ctr = 0; /* counter:indicates current subframe */
  48.     PHI_Priv->PHI_prev_fcbk_gain = 0.0F; /* Fixed Cbk Gain of previous frame */ 
  49. /*--- phi_lpc.c ---*/
  50.     PHI_Priv->PHI_prev_int_flag = 1; /* Previous Interpolation Flag */
  51.     PHI_Priv->PHI_prev_lpc_flag = 0; /* Previous LPC sent Flag */
  52.     PHI_Priv->PHI_dec_prev_interpolation_flag = 0; /* Previous Interpolation Flag */
  53.     PHI_Priv->PHI_dec_int_switch = 0; /* 0: interpolation on LARs */
  54.     PHI_Priv->PHI_desired_bit_rate = 0;
  55.     PHI_Priv->PHI_actual_bits = 0;
  56.     PHI_Priv->PHI_frames_sent = 0;
  57.     PHI_Priv->frames = 0.0F;
  58.     PHI_Priv->llc_bits = 0;
  59. }
  60. /*======================================================================*/
  61. /*      H I S T O R Y                                                   */
  62. /*======================================================================*/
  63. /* 17-03-98  P. Dillen                Initial Version                   */