From 883d94c5eaea616f9fd448d6f0987f5d405e570a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 13 May 2012 23:17:14 +0000 Subject: Comment out dead code. Fix uninitialised member variables. git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mda.lv2@4401 a436a847-0d15-0410-975c-d299462d15a1 --- src/mdaVocInput.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mdaVocInput.cpp') diff --git a/src/mdaVocInput.cpp b/src/mdaVocInput.cpp index 854a41e..1ffbe0c 100644 --- a/src/mdaVocInput.cpp +++ b/src/mdaVocInput.cpp @@ -224,7 +224,7 @@ void mdaVocInput::process(float **inputs, float **outputs, int32_t sampleFrames) while(--sampleFrames >= 0) { a = *++in1; - b = *++in2; + //b = *++in2; c = out1[1]; d = out2[1]; @@ -299,7 +299,7 @@ void mdaVocInput::processReplacing(float **inputs, float **outputs, int32_t samp while(--sampleFrames >= 0) { a = *++in1; - b = *++in2; + //b = *++in2; l0 -= lf * (l1 + a); //fundamental filter (peaking 2nd-order 100Hz lpf) l1 -= lf * (l1 - l0); -- cgit v1.2.1