Go to file
2004-04-03 06:56:02 +00:00
doc Bump version number. 2004-03-30 11:52:28 +00:00
examples Add ALSA support for sndfile-play. 2004-03-17 09:34:19 +00:00
MacOS9 Remove file merge artifacts. 2004-04-02 08:44:38 +00:00
man More zip.com.au to mega-nerd.com changes. 2004-02-13 12:31:34 +00:00
mntest initial import 2004-01-21 07:46:34 +00:00
Octave More zip.com.au to mega-nerd.com changes. 2004-02-13 12:31:34 +00:00
regtest First snapshot of the public project. 2007-05-14 19:55:24 +10:00
ROtest initial import 2004-01-21 07:46:34 +00:00
src Fix read/write of float/double encoded raw files to/from pipes. 2004-04-03 06:37:51 +00:00
tests Update pipe_test to test floats/doubles (use Autogen). 2004-04-03 06:42:33 +00:00
Win32 Remove file merge artifacts. 2004-04-02 08:44:38 +00:00
acinclude.m4 Rename AC_C_STRUCT_HACK to AC_C99_FLEXIBLE_ARRAY. 2004-04-02 11:19:35 +00:00
AUTHORS More zip.com.au to mega-nerd.com changes. 2004-02-13 12:31:34 +00:00
binheader_readf_check.py First snapshot of the public project. 2007-05-14 19:55:24 +10:00
ChangeLog Fix problems with AIFF when updating header in RDWR mode. 2004-04-01 02:58:22 +00:00
configure.ac Bump to version 1.0.10pre2. 2004-04-03 06:56:02 +00:00
COPYING First snapshot of the public project. 2007-05-14 19:55:24 +10:00
INSTALL First snapshot of the public project. 2007-05-14 19:55:24 +10:00
libsndfile.spec.in More zip.com.au to mega-nerd.com changes. 2004-02-13 12:31:34 +00:00
make_lite.py Fix building of libsndfile-lite. 2004-02-29 22:33:13 +00:00
Make.bat Pull in changes from 1.0.6 pre-release testing. 2004-02-08 10:18:12 +00:00
Makefile.am Add *.lo to src/G72x/.arch-inventory file. 2004-01-21 11:46:24 +00:00
NEWS Fix typo in NEWS. 2004-03-30 12:03:00 +00:00
README Bump version number. 2004-03-30 11:52:28 +00:00
reconfigure.mk Make aclocal.m4 depend on acinclude.m4. 2004-04-02 11:17:04 +00:00
sndfile.pc.in Fix parsing of 'PAD ' chunk of WAV files. 2004-02-15 02:30:33 +00:00

This is libsndfile, 1.0.9

libsndfile is a library of C routines for reading and writing 
files containing sampled audio data. 

The src/ directory contains the source code for library itself.

The doc/ directory contains the libsndfile documentation.

The examples/ directory contains examples of how to write code using
libsndfile. 'wav32_aiff24' converts a WAV file containing 32 bit floating 
point data into a 24 bit PCM AIFF file. 'sndfile2oct' dumps the audio
data of a file in a human readable format. 'sfconvert' is the beginnings
of a audio file format conversion utility. 'make_sine' generates a WAV
file containing one cycle of a sine wave with 4096 sample points in
32 bit floating point format. 'sfinfo' opens a sound file and prints
out information about that file.

The tests/ directory contains programs which link against libsndfile
and test its functionality.

The Win32/ directory contains files and documentation to allow libsndfile
to compile under Win32 with the Microsoft Visual C++ compiler.

The MacOS/ directory contains files and documentation to allow libsndfile
to compile under MacOS with the Metrowerks compiler.

The src/GSM610 directory contains code written by Jutta Degener and Carsten 
Bormann. Their original code can be found at :
    http://kbs.cs.tu-berlin.de/~jutta/toast.html

The src/G72x directory contains code written and released by Sun Microsystems
under a suitably free license.


Win32
-----
There are detailed instructions for building libsndfile on Win32 in the file

	doc/win32.html
	

MacOSX
------
Building on MacOSX should be the same as building it on any other Unix.


OTHER PLATFORMS
---------------
To compile libsndfile on platforms which have a Bourne Shell compatible
shell, an ANSI C compiler and a make utility should require no more that
the following three commands :
		./configure
		make
		make install
		
For platforms without the required shell, it is usually sufficient to 
create an approriate config.h file in the src/ directory with correct
values for the following #defines  (this would work for AmigaOS) :

#define HAVE_ENDIAN_H 0
#define GUESS_BIG_ENDIAN 1
#define GUESS_LITTLE_ENDIAN 0
#define FORCE_BROKEN_FLOAT 0


CONTACTS
--------

libsndfile was written by Erik de Castro Lopo (erikd AT mega-nerd DOT com).  
The libsndfile home page is at :

	http://www.mega-nerd.com/libsndfile/