mirror of
https://github.com/mborgerding/kissfft.git
synced 2025-07-18 04:54:20 -04:00
internal checkpoint
split kiss_fft.c into multiple files. It seems the best approach, all things considered.
This commit is contained in:
@ -43,7 +43,7 @@ void fft_file(FILE * fin,FILE * fout,int nfft,int nrows,int isinverse,int useasc
|
||||
|
||||
while ( fread( buf , sizeof(kiss_fft_cpx) * nfft * nrows ,1, fin ) > 0 ) {
|
||||
for (i=0;i<times;++i)
|
||||
kiss_fft_io( st , buf ,bufout);
|
||||
kiss_fft( st , buf ,bufout);
|
||||
if (useascii) {
|
||||
int i;
|
||||
for (i=0;i<nfft*nrows;++i)
|
||||
|
Reference in New Issue
Block a user