summaryrefslogtreecommitdiff
path: root/src/fft.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fft.h')
-rw-r--r--src/fft.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/fft.h b/src/fft.h
index 6066d52..eaa64f0 100644
--- a/src/fft.h
+++ b/src/fft.h
@@ -1,12 +1,6 @@
#ifndef FFT_H
#define FFT_H
-/* Everything here comes from Audacity 1.3.13
- (orignally in C++ and with more genericity and functionnality)
- Original Author : Dominic Mazzoni
- Licenced under GPL 2.0 (see LICENCE)
-*/
-
#define PSNumS 256
#define PSHalf 128
void PowerSpectrum(float In[PSNumS], float Out[PSHalf]);
@@ -15,5 +9,5 @@ void FFT(int NumSamples, int InverseTransform,
float *RealIn, float *ImagIn, float *RealOut, float *ImagOut);
void DeinitFFT();
-#endif
+#endif /*FFT_H*/