From deadc91509c507168fbd47999fed0d7c9ea693b9 Mon Sep 17 00:00:00 2001 From: John Glover Date: Sun, 8 Jul 2012 18:48:11 +0200 Subject: [residual] Bug fix: use hop size rather than frame size in synth_frame. --- src/simpl/residual.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/simpl/residual.cpp b/src/simpl/residual.cpp index 5d3cb14..5b8b8be 100644 --- a/src/simpl/residual.cpp +++ b/src/simpl/residual.cpp @@ -134,10 +134,10 @@ void SMSResidual::residual_frame(int synth_size, sample* synth, // Calculate and return one frame of the synthesised residual signal void SMSResidual::synth_frame(Frame* frame) { - residual_frame(frame->size(), frame->synth(), - frame->size(), frame->audio(), - frame->size(), frame->residual()); - sms_approxResidual(frame->size(), frame->residual(), - frame->size(), frame->synth_residual(), + residual_frame(_hop_size, frame->synth(), + _hop_size, frame->audio(), + _hop_size, frame->residual()); + sms_approxResidual(_hop_size, frame->residual(), + _hop_size, frame->synth_residual(), &_residual_params); } -- cgit v1.2.3