aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/fftease/src/dentist~.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/fftease/src/dentist~.cpp')
-rw-r--r--externals/grill/fftease/src/dentist~.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/grill/fftease/src/dentist~.cpp b/externals/grill/fftease/src/dentist~.cpp
index 8c9a0379..808796bd 100644
--- a/externals/grill/fftease/src/dentist~.cpp
+++ b/externals/grill/fftease/src/dentist~.cpp
@@ -166,9 +166,9 @@ V dentist::ms_knee(F f)
}
-V dentist::m_dsp(I n,S *const *in,S *const *out)
+V dentist::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) {
blsz = _D;
@@ -216,7 +216,7 @@ V dentist::m_signal(I n,S *const *in,S *const *out)
{
/* declare working variables */
I i, j;
- const I _D = blsz,_N = _D*_MULT_,_Nw = _N,_N2 = _N/2,_Nw2 = _Nw/2;
+ const I _D = n,_N = _D*_MULT_,_Nw = _N,_N2 = _N/2,_Nw2 = _Nw/2;
_inCount += _D;