fftext.c, move the Bourke FFT code to fftext.c (rename macro)
This commit is contained in:
parent
c61e1bc8c6
commit
a90f916883
|
|
@ -110,6 +110,6 @@ void rspectprod(double *data1, double *data2, double *outdata, int N);
|
|||
//#define CACHEFILLMALLOC(n) malloc((n)+CACHELINEFILL)
|
||||
|
||||
|
||||
#ifndef GREEN
|
||||
static void fftext(double*, double*, long int, long int, int);
|
||||
#ifdef BOURKE
|
||||
static void fftext(double *x, double *y, long int n, long int nn, int dir);
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -250,7 +250,7 @@ void rspectprod(double *data1, double *data2, double *outdata, int N)
|
|||
}
|
||||
|
||||
|
||||
#ifndef GREEN
|
||||
#ifdef BOURKE
|
||||
|
||||
static void
|
||||
fftext(double *x, double *y, long int n, long int nn, int dir)
|
||||
|
|
@ -339,4 +339,4 @@ fftext(double *x, double *y, long int n, long int nn, int dir)
|
|||
}
|
||||
}
|
||||
|
||||
#endif /* GREEN */
|
||||
#endif /* BOURKE */
|
||||
|
|
|
|||
Loading…
Reference in New Issue