summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/kiss_fft.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libspeex/kiss_fft.c')
-rw-r--r--apps/codecs/libspeex/kiss_fft.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libspeex/kiss_fft.c b/apps/codecs/libspeex/kiss_fft.c
index bff826d754..5b699a362f 100644
--- a/apps/codecs/libspeex/kiss_fft.c
+++ b/apps/codecs/libspeex/kiss_fft.c
@@ -184,7 +184,7 @@ static void kf_bfly3(
184 do{ 184 do{
185 if (!st->inverse) { 185 if (!st->inverse) {
186 C_FIXDIV(*Fout,3); C_FIXDIV(Fout[m],3); C_FIXDIV(Fout[m2],3); 186 C_FIXDIV(*Fout,3); C_FIXDIV(Fout[m],3); C_FIXDIV(Fout[m2],3);
187 } 187 }
188 188
189 C_MUL(scratch[1],Fout[m] , *tw1); 189 C_MUL(scratch[1],Fout[m] , *tw1);
190 C_MUL(scratch[2],Fout[m2] , *tw2); 190 C_MUL(scratch[2],Fout[m2] , *tw2);
@@ -237,7 +237,7 @@ static void kf_bfly5(
237 for ( u=0; u<m; ++u ) { 237 for ( u=0; u<m; ++u ) {
238 if (!st->inverse) { 238 if (!st->inverse) {
239 C_FIXDIV( *Fout0,5); C_FIXDIV( *Fout1,5); C_FIXDIV( *Fout2,5); C_FIXDIV( *Fout3,5); C_FIXDIV( *Fout4,5); 239 C_FIXDIV( *Fout0,5); C_FIXDIV( *Fout1,5); C_FIXDIV( *Fout2,5); C_FIXDIV( *Fout3,5); C_FIXDIV( *Fout4,5);
240 } 240 }
241 scratch[0] = *Fout0; 241 scratch[0] = *Fout0;
242 242
243 C_MUL(scratch[1] ,*Fout1, tw[u*fstride]); 243 C_MUL(scratch[1] ,*Fout1, tw[u*fstride]);
@@ -299,7 +299,7 @@ static void kf_bfly_generic(
299 scratchbuf[q1] = Fout[ k ]; 299 scratchbuf[q1] = Fout[ k ];
300 if (!st->inverse) { 300 if (!st->inverse) {
301 C_FIXDIV(scratchbuf[q1],p); 301 C_FIXDIV(scratchbuf[q1],p);
302 } 302 }
303 k += m; 303 k += m;
304 } 304 }
305 305