summaryrefslogtreecommitdiff
path: root/src/fft.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fft.c')
-rw-r--r--src/fft.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/fft.c b/src/fft.c
index dd91d14..5506981 100644
--- a/src/fft.c
+++ b/src/fft.c
@@ -1,13 +1,14 @@
+/*
+ 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
+*/
+
#include "fft.h"
#include <math.h>
#include <stdlib.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 MaxFastBits 16
int *gFFTBitTable[MaxFastBits]={NULL};