From 12e3edcb11b61334afac46183a79ec51124c5302 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 5 Oct 2012 17:34:11 +0000 Subject: remove lib/ folder with duplicate source files svn path=/trunk/externals/fftease/; revision=16340 --- lib/bloscbank.c | 1 - 1 file changed, 1 deletion(-) delete mode 100644 lib/bloscbank.c (limited to 'lib/bloscbank.c') diff --git a/lib/bloscbank.c b/lib/bloscbank.c deleted file mode 100644 index c35ab0d..0000000 --- a/lib/bloscbank.c +++ /dev/null @@ -1 +0,0 @@ - #include "fftease.h" void bloscbank( float *S, float *O, int D, float iD, float *lf, float *la, float *index, float *tab, int len, float synt, int lo, int hi ) { int amp,freq,chan, i; float a,ainc,f,finc,address; for ( chan = lo; chan < hi; chan++ ) { freq = ( amp = ( chan << 1 ) ) + 1; if ( S[amp] > synt ){ finc = ( S[freq] - ( f = lf[chan] ) )* iD; ainc = ( S[amp] - ( a = la[chan] ) )* iD; address = index[chan]; for ( i = 0; i < D ; i++ ) { O[i] += a*tab[ (int) address ]; address += f; while ( address >= len ) address -= len; while ( address < 0 ) address += len; a += ainc; f += finc; } lf[chan] = S[freq]; la[chan] = S[amp]; index[chan] = address; } } } \ No newline at end of file -- cgit v1.2.1