diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2003-01-09 04:37:24 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2003-01-09 04:37:24 +0000 |
commit | feeb907835c33ec49308a32449dc0b6d07285e2a (patch) | |
tree | 7049e5037b1423af69239dca4373f764df76ea74 /externals/grill/fftease/src/ether~.cpp | |
parent | 900871454af06db1d751e28cea56f59dc43d3c17 (diff) |
""
svn path=/trunk/; revision=329
Diffstat (limited to 'externals/grill/fftease/src/ether~.cpp')
-rw-r--r-- | externals/grill/fftease/src/ether~.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/externals/grill/fftease/src/ether~.cpp b/externals/grill/fftease/src/ether~.cpp index 16fbaaff..12a0d359 100644 --- a/externals/grill/fftease/src/ether~.cpp +++ b/externals/grill/fftease/src/ether~.cpp @@ -61,7 +61,7 @@ FLEXT_LIB_DSP_V("fftease, ether~",ether) V ether::setup(t_classid c) { FLEXT_CADDATTR_VAR1(c,"invert",_invert); - FLEXT_CADDATTR_VAR1(c,"thresh",_threshMult); + FLEXT_CADDATTR_VAR1(c,"index",_threshMult); } @@ -131,9 +131,9 @@ V ether::Delete() } -V ether::m_dsp(I n,S *const *in,S *const *out) +V ether::m_dsp(I n,S *const *,S *const *) { - const I _D = Blocksize(); + const I _D = n; const F _R = Samplerate(); if(_D != blsz || _R != smprt) { @@ -177,7 +177,7 @@ V ether::m_signal(I n,S *const *in,S *const *out) { /* declare working variables */ I i, j; - const I _D = blsz,_N = _D*_nmult,_Nw = _N,_N2 = _N/2,_Nw2 = _Nw/2; + const I _D = n,_N = _D*_nmult,_Nw = _N,_N2 = _N/2,_Nw2 = _Nw/2; _inCount += _D; |