Go to file
2008-03-20 13:22:21 +11:00
doc doc/FAQ.html : Tweaks to pcm16 <-> float conversion answer. 2008-03-11 18:47:19 +11:00
examples examples/sndfile-jackplay.c : Minor tweaks to warning message printed when compiled without libjack. 2008-02-05 09:47:59 +11:00
M4 Add file M4/gcc_version.m4. 2007-11-05 15:17:59 +11:00
man sndfile-play.1 : Add comment about ALSA to man page. 2007-01-21 09:03:52 +11:00
Octave Octave/octave_test.sh : Allow test to run when configured with --disable-shared. 2007-11-04 22:41:47 +11:00
regtest Fix compile warnings for 64 bit systems. 2007-04-16 23:54:51 +10:00
src src/OGG : Sync to upstream SVN. 2008-02-10 10:24:39 +11:00
tests tests/peak_chunk_test.c : Improve read_write_peak_test to find more errors. 2008-01-27 13:45:21 +11:00
Win32 More changes to instructions for using precompiled DLL. 2006-08-11 07:59:24 +00:00
.bzrignore Add command SFC_RAW_NEEDS_ENDSWAP with tests. 2008-01-20 19:19:12 +11:00
AUTHORS AUTHORS : Update. 2007-08-20 22:32:34 +10:00
autogen.sh autogen.sh : Make sure autogenerated files are created. 2007-08-27 21:35:16 +10:00
binheader_readf_check.py First snapshot of the public project. 2007-05-14 19:55:24 +10:00
ChangeLog doc/FAQ.html : Tweaks to pcm16 <-> float conversion answer. 2008-03-11 18:47:19 +11:00
configure.ac configure.ac : Bump to version 1.0.18pre20. 2007-12-03 20:17:10 +11: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 libsndfile.spec.in : Add html docs to the files section. 2005-05-14 23:34:08 +00:00
make_lite.py Fix building of libsndfile-lite. 2004-02-29 22:33:13 +00:00
Makefile.am Makefile.am : Add DISTCHECK_CONFIGURE_FLAGS. 2008-02-10 10:26:05 +11:00
mingw-configure.sh Add file mingw-configure.sh. 2008-03-20 13:22:21 +11:00
NEWS Updates from 1.0.17 release. 2006-08-31 09:38:29 +00:00
README Updates from 1.0.17 release. 2006-08-31 09:38:29 +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.17

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 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/