diff options
author | John Glover <glover.john@gmail.com> | 2010-12-09 22:19:17 +0000 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-12-09 22:19:17 +0000 |
commit | 5ca314e5ccf3dfb98fdea9d37646baca66d75ec3 (patch) | |
tree | 40de39619d48a3cca458254d081d97222dac6dd7 /basetypes.py | |
parent | b27a8f7182edb2f9e15fd60e78d54fb9fd0c5472 (diff) | |
download | simpl-5ca314e5ccf3dfb98fdea9d37646baca66d75ec3.tar.gz simpl-5ca314e5ccf3dfb98fdea9d37646baca66d75ec3.tar.bz2 simpl-5ca314e5ccf3dfb98fdea9d37646baca66d75ec3.zip |
Fixed bug in SMS peak detection - find_peaks was leaking memory wen saving peaks, and a pointer assignment in find_peaks could lead to a double free in freeAnalysis/freeSpectralPeaks.
Diffstat (limited to 'basetypes.py')
-rw-r--r-- | basetypes.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/basetypes.py b/basetypes.py index 6f076bf..dd0da26 100644 --- a/basetypes.py +++ b/basetypes.py @@ -348,18 +348,19 @@ class Synthesis(object): class Residual(object): "Calculate a residual signal" - TIME_DOMAIN = 0 - FREQUENCY_DOMAIN = 1 def __init__(self): - self.type = Residual.TIME_DOMAIN self.hop_size = 512 self.frame_size = 2048 + # TODO: break this up into find_residual and find_frame_residual + # so that it can be streamed def find_residual(self, synth, original): "Calculate and return the residual signal" raise Exception("NotYetImplemented") + # TODO: break this up into synth and synth_frame + # so that it can be streamed def synth(self, synth, original): "Calculate and return a synthesised residual signal" raise Exception("NotYetImplemented") |