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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**********************************************************************
  2.  * ISO MPEG Audio Subgroup Software Simulation Group (1996)
  3.  * ISO 13818-3 MPEG-2 Audio Encoder - Lower Sampling Frequency Extension
  4.  *
  5.  * $Id: reservoir.h,v 1.2 2001/06/01 22:26:00 wmay Exp $
  6.  *
  7.  * Revision 1.4  2000/03/21 23:02:17  markt
  8.  * replaced all "gf." by gfp->
  9.  *
  10.  * Revision 1.3  2000/03/14 21:01:47  markt
  11.  * removed fr_ps struct
  12.  *
  13.  * Revision 1.2  2000/01/13 16:26:50  takehiro
  14.  * moved info.stereo into gf.stereo
  15.  *
  16.  * Revision 1.1.1.1  1999/11/24 08:43:40  markt
  17.  * initial checkin of LAME
  18.  * Starting with LAME 3.57beta with some modifications
  19.  *
  20.  * Revision 1.1  1996/02/14 04:04:23  rowlands
  21.  * Initial revision
  22.  *
  23.  * Received from Mike Coleman
  24.  **********************************************************************/
  25. /*
  26.   Revision History:
  27.   Date        Programmer                Comment
  28.   ==========  ========================= ===============================
  29.   1995/09/06  mc@fivebats.com           created
  30. */
  31. #ifndef RESERVOIR_H
  32. #define RESERVOIR_H
  33. int ResvFrameBegin( lame_global_flags *gfp,III_side_info_t *l3_side, int mean_bits, int frameLength );
  34. void ResvMaxBits( int mean_bits, int *targ_bits, int *max_bits, int gr);
  35. void ResvAdjust(lame_global_flags *gfp,gr_info *gi, III_side_info_t *l3_side, int mean_bits );
  36. void ResvFrameEnd(lame_global_flags *gfp,III_side_info_t *l3_side, int mean_bits );
  37. #endif