summaryrefslogtreecommitdiff
path: root/src/fft.c
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2012-06-22 22:58:30 +0000
committerLudovic Pouzenc <ludovic@pouzenc.fr>2012-06-22 22:58:30 +0000
commit792fd531f67a9490f16eb594b4b3eb646128275e (patch)
tree15d365884caf2d2da5b3f4bf005a224d36d1af00 /src/fft.c
parentfcc319c1cd7857816447b68036252c82d7365df3 (diff)
download2012-violon-leds-792fd531f67a9490f16eb594b4b3eb646128275e.tar.gz
2012-violon-leds-792fd531f67a9490f16eb594b4b3eb646128275e.tar.bz2
2012-violon-leds-792fd531f67a9490f16eb594b4b3eb646128275e.zip
"Backport de l'IHM de test7 dans le projet principal.
Application licence GPL v3.0 Renommage appli Music2Light (homonymes existants) -> Instru2Light git-svn-id: file:///var/svn/2012-violon-leds/trunk@30 6be1fa4d-33ac-4c33-becc-79fcb3794bb6
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};