diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-10-05 17:34:11 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-10-05 17:34:11 +0000 |
commit | 12e3edcb11b61334afac46183a79ec51124c5302 (patch) | |
tree | 479b9abe7b11f5544e4f409f55aaea3ffa75e833 /lib/bloscbank.c | |
parent | 40ccbedc15f45a3b1a00c2942b95e5244d3424a2 (diff) |
remove lib/ folder with duplicate source files
svn path=/trunk/externals/fftease/; revision=16340
Diffstat (limited to 'lib/bloscbank.c')
-rw-r--r-- | lib/bloscbank.c | 1 |
1 files changed, 0 insertions, 1 deletions
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 |