From 5ca314e5ccf3dfb98fdea9d37646baca66d75ec3 Mon Sep 17 00:00:00 2001 From: John Glover Date: Thu, 9 Dec 2010 22:19:17 +0000 Subject: 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. --- tests/sms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/sms.py b/tests/sms.py index 9fb8fa0..f717900 100644 --- a/tests/sms.py +++ b/tests/sms.py @@ -1050,9 +1050,9 @@ class TestSimplSMS(object): pd = simpl.SMSPeakDetection() pd.max_peaks = self.max_peaks pd.hop_size = self.hop_size + peaks = pd.find_peaks(audio)[0:self.num_frames] pt = simpl.SMSPartialTracking() pt.max_partials = self.max_partials - peaks = pd.find_peaks(audio)[0:self.num_frames] partials = pt.find_partials(peaks) synth = simpl.SMSSynthesis() synth.hop_size = self.hop_size -- cgit v1.2.3