aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/fftease/src/drown~.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/fftease/src/drown~.cpp')
-rw-r--r--externals/grill/fftease/src/drown~.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/grill/fftease/src/drown~.cpp b/externals/grill/fftease/src/drown~.cpp
index 0e4ee4a8..7db3f4f0 100644
--- a/externals/grill/fftease/src/drown~.cpp
+++ b/externals/grill/fftease/src/drown~.cpp
@@ -113,9 +113,9 @@ V drown::Delete()
}
-V drown::m_dsp(I n,S *const *in,S *const *out)
+V drown::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) {
@@ -184,7 +184,7 @@ V drown::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;