From bf1b7f131c933b83afe62f01c200366e4e2e37f3 Mon Sep 17 00:00:00 2001 From: Thom Johansen Date: Thu, 1 Nov 2007 21:30:51 +0000 Subject: First attempt at ifdeffing out as much of the encoder stuff as possible from Speex. Gives a smaller binary and allows me to remove a couple more files from SOURCES. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15394 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libspeex/stereo.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/codecs/libspeex/stereo.c') diff --git a/apps/codecs/libspeex/stereo.c b/apps/codecs/libspeex/stereo.c index ced56b1134..b0c65b812f 100644 --- a/apps/codecs/libspeex/stereo.c +++ b/apps/codecs/libspeex/stereo.c @@ -41,6 +41,7 @@ /*float e_ratio_quant[4] = {1, 1.26, 1.587, 2};*/ static const float e_ratio_quant[4] = {.25f, .315f, .397f, .5f}; +#ifndef SPEEX_DISABLE_ENCODER void speex_encode_stereo(float *data, int frame_size, SpeexBits *bits) { int i, tmp; @@ -114,6 +115,7 @@ void speex_encode_stereo_int(spx_int16_t *data, int frame_size, SpeexBits *bits) tmp=vq_index(&e_ratio, e_ratio_quant, 1, 4); speex_bits_pack(bits, tmp, 2); } +#endif void speex_decode_stereo(float *data, int frame_size, SpeexStereoState *stereo) { -- cgit v1.2.3