[xiph-cvs] cvs commit: speex/libspeex filters.c
Jean-Marc Valin
jm at xiph.org
Mon Nov 10 11:38:25 PST 2003
jm 03/11/10 14:38:25
Modified: libspeex filters.c
Log:
oops...
Revision Changes Path
1.59 +1 -1 speex/libspeex/filters.c
Index: filters.c
===================================================================
RCS file: /usr/local/cvsroot/speex/libspeex/filters.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- filters.c 10 Nov 2003 19:28:20 -0000 1.58
+++ filters.c 10 Nov 2003 19:38:24 -0000 1.59
@@ -41,9 +41,9 @@
void bw_lpc(float gamma, spx_coef_t *lpc_in, spx_coef_t *lpc_out, int order)
{
int i;
- lpc_out[0] = lpc_in[0];
spx_word16_t g=gamma*32768;
spx_word16_t tmp=g;
+ lpc_out[0] = lpc_in[0];
for (i=1;i<order+1;i++)
{
lpc_out[i] = MULT16_16_P15(tmp,lpc_in[i]);
<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