l3bitstream.h
上传用户:njqiyou
上传日期:2007-01-08
资源大小:574k
文件大小:1k
源码类别:

mpeg/mp3

开发平台:

C/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.1 1996/02/14 04:04:23 rowlands Exp $
  6.  *
  7.  * $Log: l3bitstream.h,v $
  8.  * Revision 1.1  1996/02/14 04:04:23  rowlands
  9.  * Initial revision
  10.  *
  11.  * Received from Mike Coleman
  12.  **********************************************************************/
  13. #ifndef L3_BITSTREAM_H
  14. #define L3_BITSTREAM_H
  15. #include "common.h"
  16. #include "encoder.h"
  17. void III_format_bitstream( int              bitsPerFrame,
  18.    frame_params     *in_fr_ps,
  19.    int              l3_enc[2][2][576],
  20.                            III_side_info_t  *l3_side,
  21.    III_scalefac_t   *scalefac,
  22.    Bit_stream_struc *in_bs,
  23.    double           (*xr)[2][576],
  24.    char             *ancillary,
  25.    int              anc_bits );
  26. int HuffmanCode( int table_select, int x, int y, unsigned *code, unsigned int *extword, int *codebits, int *extbits );
  27. void III_FlushBitstream();
  28. int abs_and_sign( int *x ); /* returns signx and changes *x to abs(*x) */
  29. #endif