Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2002-12-15 22:32:21 +0300
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2002-12-15 22:32:21 +0300
commit7dfab4d4636f0e8befe63e439f4dbe953fa51978 (patch)
tree28f4dc7176ce3ec12e9b1e0e5288f2c5993826e3
parent9b324f61be03369d3f31911da350e73efdc97776 (diff)
Make speexenc/speexdec return 0 on success
git-svn-id: http://svn.xiph.org/trunk/speex@4155 0101bb08-14d6-0310-b084-bc0e0c8e3800
-rw-r--r--TODO3
-rw-r--r--src/speexdec.c2
-rw-r--r--src/speexenc.c2
3 files changed, 2 insertions, 5 deletions
diff --git a/TODO b/TODO
index db405c1..ab87705 100644
--- a/TODO
+++ b/TODO
@@ -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
diff --git a/src/speexdec.c b/src/speexdec.c
index 898f098..346d055 100644
--- a/src/speexdec.c
+++ b/src/speexdec.c
@@ -606,5 +606,5 @@ int main(int argc, char **argv)
if (fout != NULL)
fclose(fout);
- return 1;
+ return 0;
}
diff --git a/src/speexenc.c b/src/speexenc.c
index 405ea5f..7bbf9b8 100644
--- a/src/speexenc.c
+++ b/src/speexenc.c
@@ -675,7 +675,7 @@ int main(int argc, char **argv)
fclose(fin);
if (close_out)
fclose(fout);
- return 1;
+ return 0;
}
/*