freeswitch/libs/libsndfile
Michael Jerris cc384fb515 removing most of the generated files from tree. You will need to run bootstrap.sh and configure again after you do this update and have autoconf, automake, and libtool installed on the box.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4662 d0543943-73ff-0310-b7d9-9358b9ac24b2
2007-03-19 19:26:25 +00:00
..
Octave update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
Win32 update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
doc update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
examples update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
man update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
regtest update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
src update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
tests update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
.update add .update files to the libs that we can use to force rebuilds of libs 2007-03-16 21:22:04 +00:00
AUTHORS add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
COPYING add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
ChangeLog add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
INSTALL add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
Makefile.am add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
Makefile.in update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
Mingw-make-dist.sh add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
NEWS add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
README add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
TODO add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
acinclude.m4 add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
configure update in tree generated files. THe whole tree now cleanly bootstraps. 2007-03-11 12:30:24 +00:00
configure.ac add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
configure.gnu don't give me no flac. 2007-03-11 15:35:32 +00:00
libsndfile.spec.in add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
reconfigure.mk add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00
sndfile.pc.in add libsndifle 1.0.17 to in tree libs 2006-12-20 19:08:07 +00:00

README

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/