comparison src/vamp-sdk/ext/kiss_fft.c @ 451:b4addbeab790 vampipe

Puzzlingly, this seems to produce the wrong results if assigned directly when compiled using Emscripten. I wonder what I'm missing
author Chris Cannam
date Tue, 06 Sep 2016 19:13:48 +0100
parents e979a9c4ffb6
children af4a1522ef15
comparison
equal deleted inserted replaced
450:c053e5e79b8f 451:b4addbeab790
273 } 273 }
274 #endif 274 #endif
275 275
276 if (m==1) { 276 if (m==1) {
277 do{ 277 do{
278 *Fout = *f; 278 Fout->r = f->r;
279 Fout->i = f->i;
279 f += fstride*in_stride; 280 f += fstride*in_stride;
280 }while(++Fout != Fout_end ); 281 }while(++Fout != Fout_end );
281 }else{ 282 }else{
282 do{ 283 do{
283 // recursive call: 284 // recursive call: