[xiph-cvs] cvs commit: speex/src speexdec.1 speexenc.1
Jean-Marc Valin
jm at xiph.org
Tue Jan 28 00:15:46 PST 2003
jm 03/01/28 03:15:46
Modified: . configure.in
doc manual.lyx
libspeex gain_table.c gain_table_lbr.c misc.h
src speexdec.1 speexenc.1
Log:
Preparing for rc2
Revision Changes Path
1.42 +2 -2 speex/configure.in
Index: configure.in
===================================================================
RCS file: /usr/local/cvsroot/speex/configure.in,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- configure.in 31 Dec 2002 06:07:32 -0000 1.41
+++ configure.in 28 Jan 2003 08:15:46 -0000 1.42
@@ -4,8 +4,8 @@
SPEEX_MAJOR_VERSION=0
SPEEX_MINOR_VERSION=99
-SPEEX_MICRO_VERSION=5
-SPEEX_VERSION=1.0rc1
+SPEEX_MICRO_VERSION=6
+SPEEX_VERSION=1.0rc2
SPEEX_BINARY_AGE=0
SPEEX_INTERFACE_AGE=0
<p><p>1.49 +1 -1 speex/doc/manual.lyx
Index: manual.lyx
===================================================================
RCS file: /usr/local/cvsroot/speex/doc/manual.lyx,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- manual.lyx 16 Jan 2003 21:11:10 -0000 1.48
+++ manual.lyx 28 Jan 2003 08:15:46 -0000 1.49
@@ -29,7 +29,7 @@
The Speex Codec Manual
\newline
-(for version 1.0rc1)
+(for version 1.0rc2)
\layout Author
Jean-Marc Valin
<p><p>1.8 +31 -0 speex/libspeex/gain_table.c
Index: gain_table.c
===================================================================
RCS file: /usr/local/cvsroot/speex/libspeex/gain_table.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gain_table.c 28 Jan 2003 06:52:40 -0000 1.7
+++ gain_table.c 28 Jan 2003 08:15:46 -0000 1.8
@@ -1,3 +1,34 @@
+/* Copyright (C) 2002 Jean-Marc Valin
+ File: gain_table.c
+ Codebook for 3-tap pitch prediction gain (128 entries)
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
signed char gain_cdbk_nb[] = {
-32,-32,-32,
-28,-67,-5,
<p><p>1.6 +31 -0 speex/libspeex/gain_table_lbr.c
Index: gain_table_lbr.c
===================================================================
RCS file: /usr/local/cvsroot/speex/libspeex/gain_table_lbr.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gain_table_lbr.c 28 Jan 2003 06:52:40 -0000 1.5
+++ gain_table_lbr.c 28 Jan 2003 08:15:46 -0000 1.6
@@ -1,3 +1,34 @@
+/* Copyright (C) 2002 Jean-Marc Valin
+ File: gain_table_lbr.c
+ Codebook for 3-tap pitch prediction gain (32 entries)
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
signed char gain_cdbk_lbr[] = {
-32,-32,-32,
-31,-58,-16,
<p><p>1.15 +1 -1 speex/libspeex/misc.h
Index: misc.h
===================================================================
RCS file: /usr/local/cvsroot/speex/libspeex/misc.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- misc.h 8 Jan 2003 21:58:59 -0000 1.14
+++ misc.h 28 Jan 2003 08:15:46 -0000 1.15
@@ -36,7 +36,7 @@
#define MISC_H
#ifndef VERSION
-#define VERSION "speex-1.0rc1"
+#define VERSION "speex-1.0rc2"
#endif
#ifndef RELEASE
<p><p>1.8 +2 -2 speex/src/speexdec.1
Index: speexdec.1
===================================================================
RCS file: /usr/local/cvsroot/speex/src/speexdec.1,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- speexdec.1 11 Jan 2003 01:24:46 -0000 1.7
+++ speexdec.1 28 Jan 2003 08:15:46 -0000 1.8
@@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29.
-.TH SPEEXDEC "1" "December 2002" "speexdec version 1.0rc1" "User Commands"
+.TH SPEEXDEC "1" "December 2002" "speexdec version 1.0rc2" "User Commands"
.SH NAME
-speexdec \- manual page for speexdec version 1.0rc1
+speexdec \- manual page for speexdec version 1.0rc2
.SH SYNOPSIS
.B speexdec
[\fIoptions\fR] \fIinput_file.spx \fR[\fIoutput_file\fR]
<p><p>1.6 +2 -2 speex/src/speexenc.1
Index: speexenc.1
===================================================================
RCS file: /usr/local/cvsroot/speex/src/speexenc.1,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- speexenc.1 11 Jan 2003 01:24:46 -0000 1.5
+++ speexenc.1 28 Jan 2003 08:15:46 -0000 1.6
@@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29.
-.TH SPEEXENC "1" "December 2002" "speexenc version 1.0rc1" "User Commands"
+.TH SPEEXENC "1" "December 2002" "speexenc version 1.0rc2" "User Commands"
.SH NAME
-speexenc \- manual page for speexenc version 1.0rc1
+speexenc \- manual page for speexenc version 1.0rc2
.SH SYNOPSIS
.B speexenc
[\fIoptions\fR] \fIinput_file output_file\fR
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list