diff options
author | John Glover <j@johnglover.net> | 2012-07-12 21:25:29 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-07-12 21:25:29 +0100 |
commit | 0ef2e06cb3a1a09843b06ceb3078475e47d0e34f (patch) | |
tree | 05a349f25b9179218b2391923d40ed09214f91bd | |
parent | 2dffad8173d48672e00d4e77f14456f63a898a3e (diff) | |
download | simpl-0ef2e06cb3a1a09843b06ceb3078475e47d0e34f.tar.gz simpl-0ef2e06cb3a1a09843b06ceb3078475e47d0e34f.tar.bz2 simpl-0ef2e06cb3a1a09843b06ceb3078475e47d0e34f.zip |
[sndobj] Rename sndobj.py to pysndobj.py
-rw-r--r-- | simpl/pysndobj.py (renamed from simpl/sndobj.py) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simpl/sndobj.py b/simpl/pysndobj.py index 90b8fee..97e703a 100644 --- a/simpl/sndobj.py +++ b/simpl/pysndobj.py @@ -6,7 +6,7 @@ import numpy as np class SndObjPeakDetection(simpl.PeakDetection): "Sinusoidal peak detection using the SndObj library" def __init__(self): - simpl.PeakDetection.__init__(self) + super(SndObjPeakDetection, self).__init__() self._input = simplsndobj.SndObj() self._input.SetVectorSize(self.frame_size) self._window = simplsndobj.HammingTable(self.frame_size, 0.5) |