l3bitstream.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: l3bitstream.h,v 1.2 2001/06/01 22:26:00 wmay Exp $
  6.  *
  7.  * Revision 1.5  2000/03/21 23:02:17  markt
  8.  * replaced all "gf." by gfp->
  9.  *
  10.  * Revision 1.4  2000/03/14 20:45:04  markt
  11.  * removed "info" sturct.   Removing fr_ps struct
  12.  *
  13.  * Revision 1.3  2000/02/01 11:26:32  takehiro
  14.  * scalefactor's structure changed
  15.  *
  16.  * Revision 1.2  1999/12/03 09:45:30  takehiro
  17.  * little bit cleanup
  18.  *
  19.  * Revision 1.1.1.1  1999/11/24 08:43:09  markt
  20.  * initial checkin of LAME
  21.  * Starting with LAME 3.57beta with some modifications
  22.  *
  23.  * Revision 1.1  1996/02/14 04:04:23  rowlands
  24.  * Initial revision
  25.  *
  26.  * Received from Mike Coleman
  27.  **********************************************************************/
  28. #ifndef L3_BITSTREAM_H
  29. #define L3_BITSTREAM_H
  30. #include "util.h"
  31. void III_format_bitstream( lame_global_flags *gfp,
  32.    int              bitsPerFrame,
  33.    int              l3_enc[2][2][576],
  34.                            III_side_info_t  *l3_side,
  35.    III_scalefac_t   scalefac[2][2],
  36.    Bit_stream_struc *in_bs);
  37. int HuffmanCode( int table_select, int x, int y, unsigned *code, unsigned int *extword, int *codebits, int *extbits );
  38. void III_FlushBitstream(void);
  39. int abs_and_sign( int *x ); /* returns signx and changes *x to abs(*x) */
  40. #endif