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>2005-03-15 08:18:02 +0300
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2005-03-15 08:18:02 +0300
commit6f0e96a431295717233408f3439fd3b55c383891 (patch)
tree2f9a8099399430e4b6776c4e18fdd908e0f7e57e /libspeex/speex_callbacks.c
parent10619de5d020727296dacb7c768d3e1e77b55ab1 (diff)
Merged a modified version of Jamey Hicks' C55 patch, fixed a
long-standing fixed-point wideband overflow. Replaced some "+" and "-" with ADD() and SUB(). git-svn-id: http://svn.xiph.org/trunk/speex@9076 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex/speex_callbacks.c')
-rw-r--r--libspeex/speex_callbacks.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libspeex/speex_callbacks.c b/libspeex/speex_callbacks.c
index a1d4a30..0b99188 100644
--- a/libspeex/speex_callbacks.c
+++ b/libspeex/speex_callbacks.c
@@ -125,6 +125,7 @@ int speex_std_char_handler(SpeexBits *bits, void *state, void *data)
unsigned char ch;
ch = speex_bits_unpack_unsigned(bits, 8);
_speex_putc(ch, data);
+ /*printf("speex_std_char_handler ch=%x\n", ch);*/
return 0;
}