ref: a3803a98afeb8bddfee2038ecdf0623124d06d46
parent: f81edea0123ea0711f46e602afd56379d3f41de1
author: Jean-Marc Valin <[email protected]>
date: Sat Oct 24 07:24:34 EDT 2009
misc minor changes
--- a/Doxyfile
+++ b/Doxyfile
@@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = CELT
-PROJECT_NUMBER = 0.6.1
+PROJECT_NUMBER = 0.7.0
OUTPUT_DIRECTORY = doc/API
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
--- a/Doxyfile.devel
+++ b/Doxyfile.devel
@@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = CELT
-PROJECT_NUMBER = 0.6.1
+PROJECT_NUMBER = 0.7.0
OUTPUT_DIRECTORY = doc/devel
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
--- a/libcelt/celt.h
+++ b/libcelt/celt.h
@@ -270,9 +270,13 @@
EXPORT int celt_decoder_ctl(CELTDecoder * st, int request, ...);
-/* @} */
-
+/** Returns the English string that corresponds to an error code
+ * @param error Error code (negative for an error, 0 for success
+ * @return Constant string (must NOT be freed)
+ */
EXPORT const char *celt_strerror(int error);
+
+/* @} */
#ifdef __cplusplus
--- a/libcelt/entdec.c
+++ b/libcelt/entdec.c
@@ -67,7 +67,6 @@
ec_uint32 ec_dec_bits(ec_dec *_this,int _ftb){
ec_uint32 t;
unsigned s;
- unsigned ft;
t=0;
while(_ftb>EC_UNIT_BITS){
s=ec_decode_raw(_this,EC_UNIT_BITS);
@@ -75,7 +74,6 @@
t=t<<EC_UNIT_BITS|s;
_ftb-=EC_UNIT_BITS;
}
- ft=1U<<_ftb;
s=ec_decode_raw(_this,_ftb);
/*ec_dec_update(_this,s,s+1,ft);*/
t=t<<_ftb|s;
--- a/libcelt/vq.c
+++ b/libcelt/vq.c
@@ -162,7 +162,6 @@
if (K > (N>>1))
{
celt_word16 rcp;
- sum=0;
j=0; do {
sum += X[j];
} while (++j<N);