made some things const -- doesn't really have an effect under gcc, but it might under some compilers

added asm target to check to see if the assembly code changes
This commit is contained in:
Mark Borgerding
2004-02-08 17:10:02 +00:00
parent b61061d52a
commit b1dad2147b
3 changed files with 12 additions and 17 deletions

View File

@ -84,15 +84,6 @@ kiss_fft_cpx kf_cexp(double phase) /* returns e ** (j*phase) */
return x;
}
void kf_work(
kiss_fft_cpx * Fout,
const kiss_fft_cpx * f,
int fstride,
int in_skip,
int * factors,
const kiss_fft_state * st
);
/* a debugging function */
#define pcpx(c)\
fprintf(stderr,"%g + %gi\n",(double)((c)->r),(double)((c)->i) )