Bump version number.

This commit is contained in:
Erik de Castro Lopo 2004-03-30 11:52:28 +00:00
parent 2dfdd306f0
commit 59073b50ef
11 changed files with 41 additions and 18 deletions

View File

@ -4,7 +4,7 @@
Integrate code supplied by David Viens for supporting microsoft's
WAVEFORMATEXTENSIBLE stuff. Thanks David for supplying this.
* configure.ac
* configure.ac doc/*.html
Bump version to 1.0.9.
2004-03-28 Erik de Castro Lopo <erikd AT mega-nerd DOT com>

View File

@ -20,7 +20,14 @@
#define ENABLE_EXPERIMENTAL_CODE 0
/* Major version of GCC or 3 otherwise. */
<<<<<<< diff from left file
/* #undef GCC_MAJOR_VERSION */
========
#define GCC_MAJOR_VERSION 3
/* Define to 1 if you have the <alsa/asoundlib.h> header file. */
#define HAVE_ALSA_ASOUNDLIB_H 1
>>>>>>> diff from right file
/* Define to 1 if you have the `calloc' function. */
#define HAVE_CALLOC 1
@ -161,13 +168,13 @@
#define PACKAGE_NAME "libsndfile"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libsndfile 1.0.8"
#define PACKAGE_STRING "libsndfile 1.0.9"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libsndfile"
/* Define to the version of this package. */
#define PACKAGE_VERSION "1.0.8"
#define PACKAGE_VERSION "1.0.9"
/* Set to maximum allowed value of sf_count_t type. */
#define SF_COUNT_MAX 0x7FFFFFFFFFFFFFFFLL
@ -215,7 +222,7 @@
#define TYPEOF_SF_COUNT_T off_t
/* Version number of package */
#define VERSION "1.0.8"
#define VERSION "1.0.9"
/* Number of bits in a file offset, on hosts where this is settable. */
/* #undef _FILE_OFFSET_BITS */

View File

@ -68,6 +68,8 @@ enum
SF_FORMAT_XI = 0x0F0000, /* Fasttracker 2 Extended Instrument */
SF_FORMAT_HTK = 0x100000, /* HMM Tool Kit format */
SF_FORMAT_SDS = 0x110000, /* Midi Sample Dump Standard */
SF_FORMAT_AVR = 0x120000, /* Audio Visual Research */
SF_FORMAT_WAVEX = 0x130000, /* MS WAVE with WAVEFORMATEX */
/* Subtypes from here on. */

15
NEWS
View File

@ -1,11 +1,16 @@
Version 1.0.9 (2004-03-30)
* Add handling of AVR (Audio Visual Resaerch) files.
* Improve handling of WAVEFORMATEXTENSIBLE WAV files.
* Fix for using pipes on Win32.
Version 1.0.8 (2004-03-14)
* Correct peak chunk handing for files with > 16 tracks.
* Fix for WAV files with huge number of CUE chunks.
Version 1.0.7 (2004-02-25)
* Fix clip mode detection on ia64, MIPS and other CPUs.
* Fix two MacOSX build problems.
Version 1.0.6 (2004-02-08)
* Added support for native Win32 file access API (Ross Bencina).
* New mode to add clippling then a converting from float/double to integer
@ -13,11 +18,11 @@ Version 1.0.6 (2004-02-08)
* Fixed a bug in reading/writing files > 2Gig on Linux, Solaris and others.
* Many minor bug fixes.
* Other random fixes for Win32.
Version 1.0.5 (2003-05-03)
* Added support for HTK files.
* Added new function sf_open_fd() to allow for secure opening of temporary
files as well as reading/writing sound files embedded within larger
files as well as reading/writing sound files embedded within larger
container files.
* Added string support for AIFF files.
* Minor bug fixes and code cleanups.
@ -49,7 +54,7 @@ Version 1.0.0rc6 (2002-08-14)
Version 1.0.0rc5 (2002-08-10)
* Release candidate 5 for the 1.0.0 series.
* Changed the definition of sf_count_t which was causing problems when
* Changed the definition of sf_count_t which was causing problems when
libsndfile was compiled with other libraries (ie WxWindows).
* Minor bug fixes.
* Documentation cleanup.

2
README
View File

@ -1,4 +1,4 @@
This is libsndfile, 1.0.8
This is libsndfile, 1.0.9
libsndfile is a library of C routines for reading and writing
files containing sampled audio data.

View File

@ -43,7 +43,14 @@
#define ENABLE_EXPERIMENTAL_CODE 0
/* Major version of GCC or 3 otherwise. */
<<<<<<< diff from left file
/* #undef GCC_MAJOR_VERSION */
========
#define GCC_MAJOR_VERSION 3
/* Define to 1 if you have the <alsa/asoundlib.h> header file. */
#define HAVE_ALSA_ASOUNDLIB_H 1
>>>>>>> diff from right file
/* Define to 1 if you have the `calloc' function. */
#define HAVE_CALLOC 1
@ -184,13 +191,13 @@
#define PACKAGE_NAME "libsndfile"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libsndfile 1.0.8"
#define PACKAGE_STRING "libsndfile 1.0.9"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libsndfile"
/* Define to the version of this package. */
#define PACKAGE_VERSION "1.0.8"
#define PACKAGE_VERSION "1.0.9"
/* Set to maximum allowed value of sf_count_t type. */
#define SF_COUNT_MAX 0x7FFFFFFFFFFFFFFFi64
@ -238,7 +245,7 @@
#define TYPEOF_SF_COUNT_T __int64_t
/* Version number of package */
#define VERSION "1.0.8"
#define VERSION "1.0.9"
/* Number of bits in a file offset, on hosts where this is settable. */
/* #undef _FILE_OFFSET_BITS 64 */

View File

@ -69,6 +69,7 @@ enum
SF_FORMAT_HTK = 0x100000, /* HMM Tool Kit format */
SF_FORMAT_SDS = 0x110000, /* Midi Sample Dump Standard */
SF_FORMAT_AVR = 0x120000, /* Audio Visual Research */
SF_FORMAT_WAVEX = 0x130000, /* MS WAVE with WAVEFORMATEX */
/* Subtypes from here on. */

View File

@ -352,7 +352,7 @@ each channel.
<A HREF="http://www.mega-nerd.com/libsndfile/">
http://www.mega-nerd.com/libsndfile/</A>.
<BR>
Version : 1.0.8
Version : 1.0.9
</P>
</BODY>

View File

@ -641,7 +641,7 @@ values read from the file will be zero.
<A HREF="http://www.mega-nerd.com/libsndfile/">here</A>.
</P>
<P>
Version : 1.0.8
Version : 1.0.9
</P>
<!-- pepper -->
<!-- pepper -->

View File

@ -1005,7 +1005,7 @@ Example:
<A HREF="http://www.mega-nerd.com/libsndfile/">
http://www.mega-nerd.com/libsndfile/</A>.
<BR>
Version : 1.0.8
Version : 1.0.9
</P>
</BODY>

View File

@ -6,7 +6,7 @@
libsndfile
</TITLE>
<META NAME="Author" CONTENT="Erik de Castro Lopo (erikd AT mega-nerd DOT com)">
<META NAME="Version" CONTENT="libsndfile-1.0.8">
<META NAME="Version" CONTENT="libsndfile-1.0.9">
<META NAME="Description" CONTENT="The libsndfile Home Page">
<META NAME="Keywords" CONTENT="WAV AIFF AU SVX PAF NIST W64 libsndfile sound audio dsp Linux">
<META NAME="ROBOTS" CONTENT="NOFOLLOW">
@ -336,6 +336,7 @@
<LI>Version 1.0.7 (Feb 24 2004) Fix build problems on MacOSX and fix ia64/MIPS etc
clip mode detction.
<LI>Version 1.0.8 (Mar 14 2004) Minor bug fixes.
<LI>Version 1.0.9 (Mar 30 2004) Add AVR format. Improve handling of some WAV files.
</UL>
<A NAME="Similar"></A>
@ -405,7 +406,7 @@
</P>
<UL>
<LI>Source code as a .tar.gz :
<A HREF="libsndfile-1.0.8.tar.gz">libsndfile-1.0.8.tar.gz</A>
<A HREF="libsndfile-1.0.9.tar.gz">libsndfile-1.0.9.tar.gz</A>
</UL>
<P>
Compiling libsndfile is relatively easy. The INSTALL file in the top level directory