summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/stereo.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libspeex/stereo.c')
-rw-r--r--apps/codecs/libspeex/stereo.c43
1 files changed, 24 insertions, 19 deletions
diff --git a/apps/codecs/libspeex/stereo.c b/apps/codecs/libspeex/stereo.c
index b0c65b812f..695dfe0fb0 100644
--- a/apps/codecs/libspeex/stereo.c
+++ b/apps/codecs/libspeex/stereo.c
@@ -35,11 +35,16 @@
35 35
36#include <speex/speex_stereo.h> 36#include <speex/speex_stereo.h>
37#include <speex/speex_callbacks.h> 37#include <speex/speex_callbacks.h>
38#include "math_approx.h"
38#include "vq.h" 39#include "vq.h"
39#include <math.h> 40#include <math.h>
40 41
41/*float e_ratio_quant[4] = {1, 1.26, 1.587, 2};*/ 42/*float e_ratio_quant[4] = {1, 1.26, 1.587, 2};*/
43#ifndef FIXED_POINT
42static const float e_ratio_quant[4] = {.25f, .315f, .397f, .5f}; 44static const float e_ratio_quant[4] = {.25f, .315f, .397f, .5f};
45#else
46static const spx_word16_t e_ratio_quant[4] = {8192, 10332, 13009, 16384};
47#endif
43 48
44#ifndef SPEEX_DISABLE_ENCODER 49#ifndef SPEEX_DISABLE_ENCODER
45void speex_encode_stereo(float *data, int frame_size, SpeexBits *bits) 50void speex_encode_stereo(float *data, int frame_size, SpeexBits *bits)
@@ -115,8 +120,10 @@ void speex_encode_stereo_int(spx_int16_t *data, int frame_size, SpeexBits *bits)
115 tmp=vq_index(&e_ratio, e_ratio_quant, 1, 4); 120 tmp=vq_index(&e_ratio, e_ratio_quant, 1, 4);
116 speex_bits_pack(bits, tmp, 2); 121 speex_bits_pack(bits, tmp, 2);
117} 122}
118#endif 123#endif /* SPEEX_DISABLE_ENCODER */
119 124
125/* We don't want to decode to floats yet, disable */
126#if 0
120void speex_decode_stereo(float *data, int frame_size, SpeexStereoState *stereo) 127void speex_decode_stereo(float *data, int frame_size, SpeexStereoState *stereo)
121{ 128{
122 float balance, e_ratio; 129 float balance, e_ratio;
@@ -145,48 +152,46 @@ void speex_decode_stereo(float *data, int frame_size, SpeexStereoState *stereo)
145 data[2*i+1] = stereo->smooth_right*ftmp; 152 data[2*i+1] = stereo->smooth_right*ftmp;
146 } 153 }
147} 154}
155#endif
148 156
149void speex_decode_stereo_int(spx_int16_t *data, int frame_size, SpeexStereoState *stereo) 157void speex_decode_stereo_int(spx_int16_t *data, int frame_size, SpeexStereoState *stereo)
150{ 158{
151 float balance, e_ratio;
152 int i; 159 int i;
153 float e_tot=0, e_left, e_right, e_sum; 160 spx_word32_t balance;
161 spx_word16_t e_left, e_right, e_ratio;
154 162
155 balance=stereo->balance; 163 balance=stereo->balance;
156 e_ratio=stereo->e_ratio; 164 e_ratio=stereo->e_ratio;
157 for (i=frame_size-1;i>=0;i--)
158 {
159 e_tot += ((float)data[i])*data[i];
160 }
161 e_sum=e_tot/e_ratio;
162 e_left = e_sum*balance / (1+balance);
163 e_right = e_sum-e_left;
164 165
165 e_left = sqrt(e_left/(e_tot+.01)); 166 /* These two are Q14, with max value just below 2. */
166 e_right = sqrt(e_right/(e_tot+.01)); 167 e_right = DIV32(QCONST32(1., 22), spx_sqrt(MULT16_32_Q15(e_ratio, ADD32(QCONST32(1., 16), balance))));
168 e_left = SHR32(MULT16_16(spx_sqrt(balance), e_right), 8);
167 169
168 for (i=frame_size-1;i>=0;i--) 170 for (i=frame_size-1;i>=0;i--)
169 { 171 {
170 float ftmp=data[i]; 172 spx_word16_t tmp=data[i];
171 stereo->smooth_left = .98*stereo->smooth_left + .02*e_left; 173 stereo->smooth_left = EXTRACT16(PSHR32(MAC16_16(MULT16_16(stereo->smooth_left, QCONST16(0.98, 15)), e_left, QCONST16(0.02, 15)), 15));
172 stereo->smooth_right = .98*stereo->smooth_right + .02*e_right; 174 stereo->smooth_right = EXTRACT16(PSHR32(MAC16_16(MULT16_16(stereo->smooth_right, QCONST16(0.98, 15)), e_right, QCONST16(0.02, 15)), 15));
173 data[2*i] = stereo->smooth_left*ftmp; 175 data[2*i] = MULT16_16_P14(stereo->smooth_left, tmp);
174 data[2*i+1] = stereo->smooth_right*ftmp; 176 data[2*i+1] = MULT16_16_P14(stereo->smooth_right, tmp);
175 } 177 }
176} 178}
177 179
178int speex_std_stereo_request_handler(SpeexBits *bits, void *state, void *data) 180int speex_std_stereo_request_handler(SpeexBits *bits, void *state, void *data)
179{ 181{
180 SpeexStereoState *stereo; 182 SpeexStereoState *stereo;
181 float sign=1; 183 spx_word16_t sign=1;
182 int tmp; 184 int tmp;
183 185
184 stereo = (SpeexStereoState*)data; 186 stereo = (SpeexStereoState*)data;
185 if (speex_bits_unpack_unsigned(bits, 1)) 187 if (speex_bits_unpack_unsigned(bits, 1))
186 sign=-1; 188 sign=-1;
187 tmp = speex_bits_unpack_unsigned(bits, 5); 189 tmp = speex_bits_unpack_unsigned(bits, 5);
190#ifndef FIXED_POINT
188 stereo->balance = exp(sign*.25*tmp); 191 stereo->balance = exp(sign*.25*tmp);
189 192#else
193 stereo->balance = spx_exp(MULT16_16(sign, SHL16(tmp, 9)));
194#endif
190 tmp = speex_bits_unpack_unsigned(bits, 2); 195 tmp = speex_bits_unpack_unsigned(bits, 2);
191 stereo->e_ratio = e_ratio_quant[tmp]; 196 stereo->e_ratio = e_ratio_quant[tmp];
192 197