diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | MacOS9/config.h | 6 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | Win32/config.h | 4 | ||||
-rw-r--r-- | Win32/sndfile.h | 38 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | doc/FAQ.html | 2 | ||||
-rw-r--r-- | doc/api.html | 2 | ||||
-rw-r--r-- | doc/command.html | 2 | ||||
-rw-r--r-- | doc/index.html | 6 |
10 files changed, 39 insertions, 32 deletions
@@ -1,3 +1,8 @@ +2004-11-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com> + + * Win32/sndfile.h Win32/config.h MacOS9/sndfile.h MacOS9/config.h + Updates from autoconfig versions. + 2004-11-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com> * src/aiff.c diff --git a/MacOS9/config.h b/MacOS9/config.h index 658d03f..878eb6a 100644 --- a/MacOS9/config.h +++ b/MacOS9/config.h @@ -167,13 +167,13 @@ #define PACKAGE_NAME "libsndfile" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "libsndfile 1.0.11pre11" +#define PACKAGE_STRING "libsndfile 1.0.11" /* 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.11pre11" +#define PACKAGE_VERSION "1.0.11" /* Set to maximum allowed value of sf_count_t type. */ #define SF_COUNT_MAX 0x7FFFFFFFFFFFFFFFLL @@ -227,7 +227,7 @@ #define TYPEOF_SF_COUNT_T off_t /* Version number of package */ -#define VERSION "1.0.11pre11" +#define VERSION "1.0.11" /* Number of bits in a file offset, on hosts where this is settable. */ /* #undef _FILE_OFFSET_BITS */ @@ -1,9 +1,9 @@ -Version 1.0.11 (2004-11-16) +Version 1.0.11 (2004-11-15) * Add support for SD2 files. * Add read support for loop info in WAV and AIFF files. * Add more tests. * Improve type safety. - * Minor optimisations. + * Minor optimisations and bug fixes. Version 1.0.10 (2004-06-15) * Fix AIFF read/write mode bugs. diff --git a/Win32/config.h b/Win32/config.h index 5825877..a152b59 100644 --- a/Win32/config.h +++ b/Win32/config.h @@ -190,7 +190,7 @@ #define PACKAGE_NAME "libsndfile" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "libsndfile 1.0.11pre11" +#define PACKAGE_STRING "libsndfile 1.0.11" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "libsndfile" @@ -250,7 +250,7 @@ #define TYPEOF_SF_COUNT_T __int64_t /* Version number of package */ -#define VERSION "1.0.11pre11" +#define VERSION "1.0.11" /* Number of bits in a file offset, on hosts where this is settable. */ /* #undef _FILE_OFFSET_BITS */ diff --git a/Win32/sndfile.h b/Win32/sndfile.h index b79be0c..9120cfa 100644 --- a/Win32/sndfile.h +++ b/Win32/sndfile.h @@ -71,7 +71,7 @@ enum SF_FORMAT_AVR = 0x120000, /* Audio Visual Research */ SF_FORMAT_WAVEX = 0x130000, /* MS WAVE with WAVEFORMATEX */ SF_FORMAT_SD2 = 0x160000, /* Sound Designer 2 */ - + /* Subtypes from here on. */ SF_FORMAT_PCM_S8 = 0x0001, /* Signed 8 bit data */ @@ -103,7 +103,7 @@ enum SF_FORMAT_DPCM_8 = 0x0050, /* 8 bit differential PCM (XI only) */ SF_FORMAT_DPCM_16 = 0x0051, /* 16 bit differential PCM (XI only) */ - + /* Endian-ness options. */ @@ -154,7 +154,7 @@ enum SFC_SET_UPDATE_HEADER_AUTO = 0x1061, SFC_FILE_TRUNCATE = 0x1080, - + SFC_SET_RAW_START_OFFSET = 0x1090, SFC_SET_DITHER_ON_WRITE = 0x10A0, @@ -164,7 +164,7 @@ enum SFC_GET_DITHER_INFO = 0x10A3, SFC_GET_EMBED_FILE_INFO = 0x10B0, - + SFC_SET_CLIPPING = 0x10C0, SFC_GET_CLIPPING = 0x10C1, @@ -178,9 +178,9 @@ enum /* ** SFC_SET_ADD_* values are deprecated and will disappear at some - ** time in the future. They are guaranteed to be here up to and - ** including version 1.0.8 to avoid breakage of existng software. - ** They currently do nothing and will continue to do nothing. + ** time in the future. They are guaranteed to be here up to and + ** including version 1.0.8 to avoid breakage of existng software. + ** They currently do nothing and will continue to do nothing. */ SFC_SET_ADD_DITHER_ON_WRITE = 0x1070, SFC_SET_ADD_DITHER_ON_READ = 0x1071 @@ -222,13 +222,13 @@ enum } ; /* Public error values. These are guaranteed to remain unchanged for the duration -** of the library major version number. +** of the library major version number. ** There are also a large number of private error numbers which are internal to ** the library which can change at any time. */ enum -{ SF_ERR_NO_ERROR = 0, +{ SF_ERR_NO_ERROR = 0, SF_ERR_UNRECOGNISED_FORMAT = 1, SF_ERR_SYSTEM = 2 } ; @@ -238,7 +238,7 @@ enum typedef struct SNDFILE_tag SNDFILE ; /* The following typedef is system specific and is defined when libsndfile is. -** compiled. sf_count_t can be one of loff_t (Linux), off_t (*BSD), +** compiled. sf_count_t can be one of loff_t (Linux), off_t (*BSD), ** off64_t (Solaris), __int64_t (Win32) etc. */ @@ -275,13 +275,13 @@ typedef struct SF_INFO SF_INFO ; typedef struct { int format ; - const char *name ; - const char *extension ; + const char *name ; + const char *extension ; } SF_FORMAT_INFO ; /* -** Enums and typedefs for adding dither on read and write. -** See the html documentation for sf_command(), SFC_SET_DITHER_ON_WRITE +** Enums and typedefs for adding dither on read and write. +** See the html documentation for sf_command(), SFC_SET_DITHER_ON_WRITE ** and SFC_SET_DITHER_ON_READ. */ @@ -362,7 +362,7 @@ SNDFILE* sf_open (const char *path, int mode, SF_INFO *sfinfo) ; ** When passed a descriptor like this, the library will assume that the start ** of file header is at the current file offset. This allows sound files within ** larger container files to be read and/or written. -** On error, this will return a NULL pointer. To find the error number, pass a +** On error, this will return a NULL pointer. To find the error number, pass a ** NULL SNDFILE to sf_perror () or sf_error_str (). ** All calls to sf_open_fd() should be matched with a call to sf_close(). @@ -370,20 +370,20 @@ SNDFILE* sf_open (const char *path, int mode, SF_INFO *sfinfo) ; SNDFILE* sf_open_fd (int fd, int mode, SF_INFO *sfinfo, int close_desc) ; -/* sf_error () returns a error number which can be translated to a text +/* sf_error () returns a error number which can be translated to a text ** string using sf_error_number(). */ int sf_error (SNDFILE *sndfile) ; -/* sf_strerror () returns to the caller a pointer to the current error message for +/* sf_strerror () returns to the caller a pointer to the current error message for ** the given SNDFILE. */ const char* sf_strerror (SNDFILE *sndfile) ; /* sf_error_number () allows the retrieval of the error string for each internal -** error number. +** error number. ** */ @@ -492,7 +492,7 @@ int sf_close (SNDFILE *sndfile) ; /* ** Do not edit or modify anything in this comment block. -** The arch-tag line is a file identity tag for the GNU Arch +** The arch-tag line is a file identity tag for the GNU Arch ** revision control system. ** ** arch-tag: 906bb197-18f2-4f66-a395-b4722bab5114 diff --git a/configure.ac b/configure.ac index 30b9241..6a0a077 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ dnl Require autoconf version AC_PREREQ(2.53) -AC_INIT(libsndfile,1.0.11pre11,erikd@mega-nerd.com) +AC_INIT(libsndfile,1.0.11,erikd@mega-nerd.com) AC_CONFIG_SRCDIR([src/sndfile.c]) AC_CANONICAL_TARGET([]) AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION) diff --git a/doc/FAQ.html b/doc/FAQ.html index 68cf266..029fdc6 100644 --- a/doc/FAQ.html +++ b/doc/FAQ.html @@ -487,7 +487,7 @@ library is if your application is released under the GNU GPL or LGPL. <A HREF="http://www.mega-nerd.com/libsndfile/"> http://www.mega-nerd.com/libsndfile/</A>. <BR> -Version : 1.0.10 +Version : 1.0.11 </P> </BODY> diff --git a/doc/api.html b/doc/api.html index aa1995e..404fa2c 100644 --- a/doc/api.html +++ b/doc/api.html @@ -647,7 +647,7 @@ values read from the file will be zero. <A HREF="http://www.mega-nerd.com/libsndfile/">here</A>. </P> <P> -Version : 1.0.10 +Version : 1.0.11 </P> <!-- pepper --> <!-- pepper --> diff --git a/doc/command.html b/doc/command.html index 71be422..6fc8e52 100644 --- a/doc/command.html +++ b/doc/command.html @@ -1039,7 +1039,7 @@ Example: <A HREF="http://www.mega-nerd.com/libsndfile/"> http://www.mega-nerd.com/libsndfile/</A>. <BR> -Version : 1.0.10 +Version : 1.0.11 </P> </BODY> diff --git a/doc/index.html b/doc/index.html index 2308184..e1b2272 100644 --- a/doc/index.html +++ b/doc/index.html @@ -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.11pre11"> + <META NAME="Version" CONTENT="libsndfile-1.0.11"> <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"> @@ -334,6 +334,8 @@ <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. <LI>Version 1.0.10 (Jun 15 2004) Minor bug fixes. Fix support for Win32 MinGW compiler. + <LI>Version 1.0.11 (Nov 15 2004) Add SD2 file support, reading of loop data in WAV and AIFF. + Minor bug fixes. </UL> <A NAME="Similar"></A> @@ -403,7 +405,7 @@ </P> <UL> <LI>Source code as a .tar.gz : - <A HREF="libsndfile-1.0.11pre11pre11.tar.gz">libsndfile-1.0.11pre11pre11.tar.gz</A> + <A HREF="libsndfile-1.0.11.tar.gz">libsndfile-1.0.11.tar.gz</A> </UL> <P> Compiling libsndfile is relatively easy. The INSTALL file in the top level directory |