home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Sound / LAME / Source / l3bitstream-pvt.h < prev    next >
C/C++ Source or Header  |  1997-01-22  |  932b  |  31 lines

  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-pvt.h,v 1.1 1996/02/14 04:04:23 rowlands Exp $
  6.  *
  7.  * $Log: l3bitstream-pvt.h,v $
  8.  * Revision 1.1  1996/02/14 04:04:23  rowlands
  9.  * Initial revision
  10.  *
  11.  * Received from Mike Coleman
  12.  **********************************************************************/
  13.  
  14. #ifndef L3BITSTREAM_PVT_H
  15. #define L3BITSTREAM_PVT_H
  16.  
  17. static int encodeSideInfo( III_side_info_t  *si );
  18.  
  19. static void encodeMainData( int              l3_enc[2][2][576],
  20.                 III_side_info_t  *si,
  21.                 III_scalefac_t   *scalefac );
  22.  
  23. static void write_ancillary_data( char *theData, int lengthInBits );
  24.  
  25. static void drain_into_ancillary_data( int lengthInBits );
  26.  
  27. static void Huffmancodebits( BF_PartHolder **pph, int *ix, gr_info *gi );
  28.  
  29.  
  30. #endif
  31.