diff options
author | John Glover <glover.john@gmail.com> | 2010-12-08 16:17:23 +0000 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-12-08 16:17:23 +0000 |
commit | af5cafa0e628b1c8fd672afd87af7a0525ac6c85 (patch) | |
tree | 44cc24c12ce9a15cf56d1c05060f1218cf8ead69 | |
parent | 69d6a43aaf5a9f05fdcddd51da1841a67245cc1f (diff) | |
download | simpl-af5cafa0e628b1c8fd672afd87af7a0525ac6c85.tar.gz simpl-af5cafa0e628b1c8fd672afd87af7a0525ac6c85.tar.bz2 simpl-af5cafa0e628b1c8fd672afd87af7a0525ac6c85.zip |
Removed limitation on number of SMS instances that can be created at once. The new libsms memory management code in v1.15 fixes this issue
-rw-r--r-- | sms.py | 25 | ||||
-rw-r--r-- | tests/sms.py | 2 |
2 files changed, 0 insertions, 27 deletions
@@ -19,15 +19,8 @@ from simpl import simplsms class SMSPeakDetection(simpl.PeakDetection): "Sinusoidal peak detection using SMS" - _instances = 0 def __init__(self): - # limit this to only 1 instance at a time as calls to libsms are not independent, - # some static C variables are used. These should really be addressed in libsms. - # TODO: silently treat this as a Singleton object rather than raising an exception? - SMSPeakDetection._instances += 1 - if SMSPeakDetection._instances > 1: - raise Exception("Currently only 1 instance of each SMS analysis/synthesis object can exist at once") simpl.PeakDetection.__init__(self) simplsms.sms_init() # analysis parameters @@ -58,7 +51,6 @@ class SMSPeakDetection(simpl.PeakDetection): def __del__(self): simplsms.sms_freeAnalysis(self._analysis_params) simplsms.sms_free() - SMSPeakDetection._instances -= 1 # properties max_frequency = property(lambda self: self.get_max_frequency(), @@ -196,14 +188,8 @@ class SMSPeakDetection(simpl.PeakDetection): class SMSPartialTracking(simpl.PartialTracking): "Partial tracking using SMS" - _instances = 0 def __init__(self): - # limit this to only 1 instance at a time as calls to libsms are not independent, - # some static C variables are used. These should really be addressed in libsms. - SMSPartialTracking._instances += 1 - if SMSPartialTracking._instances > 1: - raise Exception("Currently only 1 instance of each SMS analysis/synthesis object can exist at once") simpl.PartialTracking.__init__(self) simplsms.sms_init() self._analysis_params = simplsms.SMS_AnalParams() @@ -229,7 +215,6 @@ class SMSPartialTracking(simpl.PartialTracking): simplsms.sms_freeAnalysis(self._analysis_params) simplsms.sms_freeFrame(self._analysis_frame) simplsms.sms_free() - SMSPartialTracking._instances -= 1 def set_max_partials(self, max_partials): self._max_partials = max_partials @@ -286,12 +271,8 @@ class SMSPartialTracking(simpl.PartialTracking): class SMSSynthesis(simpl.Synthesis): "Sinusoidal resynthesis using SMS" - _instances = 0 def __init__(self): - SMSSynthesis._instances += 1 - if SMSSynthesis._instances > 1: - raise Exception("Currently only 1 instance of each SMS analysis/synthesis object can exist at once") simpl.Synthesis.__init__(self) simplsms.sms_init() self._synth_params = simplsms.SMS_SynthParams() @@ -308,7 +289,6 @@ class SMSSynthesis(simpl.Synthesis): simplsms.sms_freeFrame(self._analysis_frame) simplsms.sms_freeSynth(self._synth_params) simplsms.sms_free() - SMSSynthesis._instances -= 1 # properties synthesis_type = property(lambda self: self.get_synthesis_type(), @@ -398,12 +378,8 @@ class SMSSynthesis(simpl.Synthesis): class SMSResidual(simpl.Residual): - _instances = 0 def __init__(self): - SMSResidual._instances += 1 - if SMSResidual._instances > 1: - raise Exception("Currently only 1 instance of each SMS analysis/synthesis object can exist at once") simpl.Residual.__init__(self) simplsms.sms_init() self._analysis_params = simplsms.SMS_AnalParams() @@ -411,7 +387,6 @@ class SMSResidual(simpl.Residual): def __del__(self): simplsms.sms_free() - SMSSynthesis._instances -= 1 def find_residual(self, synth, original): "Calculate and return the residual signal" diff --git a/tests/sms.py b/tests/sms.py index 920e7c2..9fb8fa0 100644 --- a/tests/sms.py +++ b/tests/sms.py @@ -1039,8 +1039,6 @@ class TestSimplSMS(object): pysms.sms_synthesize(analysis_frames[current_frame], synth_samples, synth_params) sms_audio = np.hstack((sms_audio, synth_samples)) current_frame += 1 - #from scipy.io.wavfile import write - #write('sms_audio.wav', sampling_rate, sms_audio) for frame in analysis_frames: pysms.sms_freeFrame(frame) |