diff options
author | John Glover <j@johnglover.net> | 2012-09-11 16:02:16 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-09-11 16:02:16 +0200 |
commit | acb66816c83b2d8ce35bca015f2721d6aef5ad40 (patch) | |
tree | fadcb827e1e5fef3f0b8a48498dc2558a5fd5bfb | |
parent | 75bf8b0ba1d874b6af1b88ed5fffe27b3b25e70d (diff) | |
download | simpl-acb66816c83b2d8ce35bca015f2721d6aef5ad40.tar.gz simpl-acb66816c83b2d8ce35bca015f2721d6aef5ad40.tar.bz2 simpl-acb66816c83b2d8ce35bca015f2721d6aef5ad40.zip |
[residual] SMSResidual fix: don't call Frame.clear
as it now clears the audio buffer as well as
peak/partial data.
Remove some dead code.
-rw-r--r-- | simpl/residual.pxd | 1 | ||||
-rw-r--r-- | simpl/residual.pyx | 4 | ||||
-rw-r--r-- | src/simpl/residual.cpp | 17 | ||||
-rw-r--r-- | src/simpl/residual.h | 3 |
4 files changed, 9 insertions, 16 deletions
diff --git a/simpl/residual.pxd b/simpl/residual.pxd index e5e39a5..7fa1a70 100644 --- a/simpl/residual.pxd +++ b/simpl/residual.pxd @@ -31,4 +31,3 @@ cdef extern from "../src/simpl/residual.h" namespace "simpl": c_SMSResidual() int num_stochastic_coeffs() void num_stochastic_coeffs(int new_num_stochastic_coeffs) - # int stochastic_type() diff --git a/simpl/residual.pyx b/simpl/residual.pyx index 4f27deb..48f8eee 100644 --- a/simpl/residual.pyx +++ b/simpl/residual.pyx @@ -84,7 +84,3 @@ cdef class SMSResidual(Residual): property num_stochastic_coeffs: def __get__(self): return (<c_SMSResidual*>self.thisptr).num_stochastic_coeffs() def __set__(self, int i): (<c_SMSResidual*>self.thisptr).num_stochastic_coeffs(i) - - # property stochastic_type: - # def __get__(self): return (<c_SMSResidual*>self.thisptr).stochastic_type() - # def __set__(self, int i): (<c_SMSResidual*>self.thisptr).stochastic_type(i) diff --git a/src/simpl/residual.cpp b/src/simpl/residual.cpp index 6d2c4c7..b74c1a6 100644 --- a/src/simpl/residual.cpp +++ b/src/simpl/residual.cpp @@ -129,15 +129,11 @@ void SMSResidual::num_stochastic_coeffs(int new_num_stochastic_coeffs) { sms_initResidual(&_residual_params); } -// int SMSResidual::stochastic_type() { -// return _residual_params. -// } - -// void SMSResidual::stochastic_type(int new_stochastic_type) { -// } - void SMSResidual::residual_frame(Frame* frame) { - frame->clear(); + frame->clear_peaks(); + frame->clear_partials(); + frame->clear_synth(); + _pd.find_peaks_in_frame(frame); _pt.update_partials(frame); _synth.synth_frame(frame); @@ -157,4 +153,9 @@ void SMSResidual::synth_frame(Frame* frame) { sms_approxResidual(_hop_size, frame->residual(), _hop_size, frame->synth_residual(), &_residual_params); + + // SMS stochastic component is currently a bit loud so scaled here + for(int i = 0; i < frame->synth_size(); i++) { + frame->synth_residual()[i] *= 0.2; + } } diff --git a/src/simpl/residual.h b/src/simpl/residual.h index d3b7b59..8bdd316 100644 --- a/src/simpl/residual.h +++ b/src/simpl/residual.h @@ -67,9 +67,6 @@ class SMSResidual : public Residual { int num_stochastic_coeffs(); void num_stochastic_coeffs(int new_num_stochastic_coeffs); - // int stochastic_type(); - // void stochastic_type(int new_stochastic_type); - void residual_frame(Frame* frame); void synth_frame(Frame* frame); }; |