[xiph-commits] r9275 - trunk/speex/libspeex

jm at motherfish-iii.xiph.org jm at motherfish-iii.xiph.org
Fri May 13 00:20:42 PDT 2005


Author: jm
Date: 2005-05-13 00:20:41 -0700 (Fri, 13 May 2005)
New Revision: 9275

Modified:
   trunk/speex/libspeex/speex.c
Log:
Oops. Fixed speex_decode() (float version only) when compiling with FIXED_POINT


Modified: trunk/speex/libspeex/speex.c
===================================================================
--- trunk/speex/libspeex/speex.c	2005-05-13 00:35:08 UTC (rev 9274)
+++ trunk/speex/libspeex/speex.c	2005-05-13 07:20:41 UTC (rev 9275)
@@ -112,7 +112,7 @@
 {
    int i, ret;
    int N;
-   float short_out[MAX_IN_SAMPLES];
+   spx_int16_t short_out[MAX_IN_SAMPLES];
    speex_decoder_ctl(state, SPEEX_GET_FRAME_SIZE, &N);
    ret = (*((SpeexMode**)state))->dec(state, bits, short_out);
    for (i=0;i<N;i++)



More information about the commits mailing list