blob: eaa64f03e21ff7323b5e925ae22a6e934b8d04ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef FFT_H
#define FFT_H
#define PSNumS 256
#define PSHalf 128
void PowerSpectrum(float In[PSNumS], float Out[PSHalf]);
void FFT(int NumSamples, int InverseTransform,
float *RealIn, float *ImagIn, float *RealOut, float *ImagOut);
void DeinitFFT();
#endif /*FFT_H*/
|