README
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. This is libsndfile, 0.0.16
  2. libsndfile is a library of C routines for reading and writing 
  3. files containing sampled audio data. 
  4. The src/ directory contains the source code for library itself.
  5. The doc/ directory contains the libsndfile documentation.
  6. The examples/ directory contains examples of how to write code using
  7. libsndfile. 'wav32_aiff24' converts a WAV file containing 32 bit floating 
  8. point data into a 24 bit PCM AIFF file. 'sndfile2oct' dumps the audio
  9. data of a file in a human readable format. 'sfconvert' is the beginnings
  10. of a audio file format conversion utility. 'make_sine' generates a WAV
  11. file containing one cycle of a sine wave with 4096 sample points in
  12. 32 bit floating point format. 'sfinfo' opens a sound file and prints
  13. out information about that file.
  14. The tests/ directory contains programs which link against libsndfile
  15. and test its functionality.
  16. The Win32/ directory contains files and documentation to allow libsndfile
  17. to compile under Win32 with the Microsoft Visual C++ compiler.
  18. The MacOS/ directory contains files and documentation to allow libsndfile
  19. to compile under MacOS with the Metrowerks compiler.
  20. The src/GSM610 directory contains code written by Jutta Degener and Carsten 
  21. Bormann. Their original code can be found at :
  22.     http://kbs.cs.tu-berlin.de/~jutta/toast.html
  23. OTHER PLATFORMS
  24. ---------------
  25. To compile libsndfile on platforms which have a Bourne Shell compatible
  26. shell, an ANSI C compiler and a make utility should require no more that
  27. the following three commands :
  28. ./configure
  29. make
  30. make install
  31. For platforms without the required shell, it is usually sufficient to 
  32. create an approriate config.h file in the src/ directory with correct
  33. values for the following #defines  (this would work for AmigaOS) :
  34. #define __BIG_ENDIAN__ 1
  35. #define __LITTLE_ENDIAN__ 0
  36. #define CAN_READ_WRITE_x86_IEEE 0
  37. CONTACTS
  38. --------
  39. libsndfile was written by Erik de Castro Lopo (erikd@zip.com.au).  
  40. The libsndfile home page is at :
  41. http://www.zip.com.au/~erikd/libsndfile/