summaryrefslogtreecommitdiff
path: root/basetypes.py
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
committerJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
commitce65c30264be9683dd3a59b35730d2f31e02d37f (patch)
tree90aaf2e77526af9ba099e76175956d0dd6a37633 /basetypes.py
parentb46b988f164f983fc889c7bc0c96953e4609d27a (diff)
downloadsimpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.gz
simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.bz2
simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.zip
Changed from floats to doubles in the C/C++ code, makes Python integration a bit easier. Fixed a bug that would cause SndObjSynthesis to crash if peak values were floats.
Diffstat (limited to 'basetypes.py')
-rw-r--r--basetypes.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/basetypes.py b/basetypes.py
index 3a9c87e..b2f0ae8 100644
--- a/basetypes.py
+++ b/basetypes.py
@@ -124,6 +124,7 @@ class PeakDetection(object):
self._max_peaks = 100
self._window_type = "hamming"
self._window_size = 2048
+ self._min_peak_separation = 1.0 # in Hz
self.peaks = []
# properties
@@ -293,7 +294,7 @@ class Synthesis(object):
def synth(self, partials):
"Synthesise audio from the given partials"
- audio_out = np.array([], dtype=np.float32)
+ audio_out = simpl.array([])
# return an empty frame if there are no partials
if not partials:
return audio_out