[xiph-cvs] cvs commit: speex/src speexdec.c speexenc.c
Jean-Marc Valin
jm at xiph.org
Sun Dec 15 11:32:21 PST 2002
jm 02/12/15 14:32:21
Modified: . TODO
src speexdec.c speexenc.c
Log:
Make speexenc/speexdec return 0 on success
Revision Changes Path
1.17 +0 -3 speex/TODO
Index: TODO
===================================================================
RCS file: /usr/local/cvsroot/speex/TODO,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- TODO 12 Dec 2002 07:51:35 -0000 1.16
+++ TODO 15 Dec 2002 19:32:21 -0000 1.17
@@ -1,14 +1,11 @@
Features
*Average bit-rate VBR
-Add maximum/minimum bit-rate control for VBR
-*Add "VAD-only" VBR (constant bit-rate or comfort noise)
-Get the encoder to use the rate of packet loss (more conservative pitch gains)
-No transmission when constant noise/silence
Long-term quality improvements
-Improve perceptual enhancement (including wideband)
--Improve VAD and VBR
--Packet-loss concealment
Standards
*Complete Speex RTP profile
<p><p>1.61 +1 -1 speex/src/speexdec.c
Index: speexdec.c
===================================================================
RCS file: /usr/local/cvsroot/speex/src/speexdec.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- speexdec.c 11 Nov 2002 06:05:22 -0000 1.60
+++ speexdec.c 15 Dec 2002 19:32:21 -0000 1.61
@@ -606,5 +606,5 @@
if (fout != NULL)
fclose(fout);
- return 1;
+ return 0;
}
<p><p>1.63 +1 -1 speex/src/speexenc.c
Index: speexenc.c
===================================================================
RCS file: /usr/local/cvsroot/speex/src/speexenc.c,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- speexenc.c 15 Dec 2002 06:01:45 -0000 1.62
+++ speexenc.c 15 Dec 2002 19:32:21 -0000 1.63
@@ -675,7 +675,7 @@
fclose(fin);
if (close_out)
fclose(fout);
- return 1;
+ return 0;
}
/*
<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