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-05-02 09:14:33 +0400
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2005-05-02 09:14:33 +0400
commit926a0ad0e91c789f482f1d880d4ac36da078d6ed (patch)
tree4d781384ba597286b12f9ccddfd84954e8b99411
parent36d776f6c7bf91c05169ecf913ac9e7f16a6ab8c (diff)
oops, fixed stupid bug that breaks decoding
git-svn-id: http://svn.xiph.org/branches/rel-1-0-branch/speex@9200 0101bb08-14d6-0310-b084-bc0e0c8e3800
-rw-r--r--libspeex/modes.c1
-rw-r--r--libspeex/stereo.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/libspeex/modes.c b/libspeex/modes.c
index f4bc22a..87fd5f5 100644
--- a/libspeex/modes.c
+++ b/libspeex/modes.c
@@ -32,6 +32,7 @@
*/
+#include <math.h>
#include "modes.h"
#include "ltp.h"
#include "quant_lsp.h"
diff --git a/libspeex/stereo.c b/libspeex/stereo.c
index 3552d13..baaccd9 100644
--- a/libspeex/stereo.c
+++ b/libspeex/stereo.c
@@ -118,7 +118,6 @@ void speex_decode_stereo(float *data, int frame_size, SpeexStereoState *stereo)
void speex_decode_stereo_int(short *data, int frame_size, SpeexStereoState *stereo)
{
int i;
- int N;
/* FIXME: Do some dynamic allocation here */
float float_data[2*MAX_IN_SAMPLES];
speex_decode_stereo(float_data, frame_size, stereo);