INSTALL
上传用户: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 Codec
  4. $Id: INSTALL,v 1.1 1996/02/14 05:51:19 rowlands Exp $
  5. $Log: INSTALL,v $
  6. Revision 1.1  1996/02/14 05:51:19  rowlands
  7. Initial revision
  8. *************************************************************************
  9. Building the MPEG audio decoding software:
  10. If you have gnu make and are on a Unix-type system, you should only have to
  11. type:
  12. ./configure
  13. make
  14. This will create a Makefile customized to your environment, overwriting the
  15. previous Makefile, using Makefile.in as a template.
  16. For other systems you may have to modify the Makefile. Some flags of
  17. interest are:
  18. BS_FORMAT
  19.   Set to BINARY to work with most MPEG audio decoders (and save space). You
  20.   can set it to ASCII, but your bitstream will only work with musicout().
  21. HAVE_NINT
  22.   Define this if your math library already has nint().
  23. NDEBUG
  24.   Define this to turn off all the assertions. Don't define this if you
  25.   are developing code.
  26. DEBUG
  27.   Define this to get debugging messages printed to stdout.
  28. For non-Unix systems you may have to define other things. Be sure to look
  29. at common.h. If you build this on a Macintosh, be sure to use a fairly
  30. recent set of Universal Headers.