summaryrefslogtreecommitdiff
path: root/mq.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 /mq.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 'mq.py')
-rw-r--r--mq.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/mq.py b/mq.py
index 44af0cc..b5835dc 100644
--- a/mq.py
+++ b/mq.py
@@ -62,7 +62,6 @@ class MQPeakDetection(simpl.PeakDetection):
current_mag > next_mag):
p = simpl.Peak()
p.amplitude = current_mag
- p.bin_number = bin - 1
p.frequency = (bin - 1) * self._fundamental
p.phase = np.angle(spectrum[bin-1])
current_peaks.append(p)