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

mpeg/mp3

开发平台:

C/C++

  1. Building the MPEG audio encoding software:
  2. If you have gnu make and are on a Unix-type system, you should only have to
  3. type:
  4. ./configure
  5. make
  6. This will create a Makefile customized to your environment, overwriting the
  7. previous Makefile, using Makefile.in as a template.
  8. For other systems you may have to modify the Makefile. Some flags of
  9. interest are:
  10. BS_FORMAT
  11.   Set to BINARY to work with most MPEG audio decoders (and save space). You
  12.   can set it to ASCII, but your bitstream will only work with musicout().
  13. HAVE_NINT
  14.   Define this if your math library already has nint().
  15. NDEBUG
  16.   Define this to turn off all the assertions. Don't define this if you
  17.   are developing code.
  18. DEBUG
  19.   Define this to get debugging messages printed to stdout.
  20. For non-Unix systems you may have to define other things. Be sure to look
  21. at common.h. If you build this on a Macintosh, be sure to use a fairly
  22. recent set of Universal Headers. I have built this code on SunOS 4.1 and
  23. Linux 1.3 (using gcc 2.6.3), and on the Power Macintosh (using Metrowerks
  24. CodeWarrior 6).
  25. <mc@fivebats.com> 1995/10/16