summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-10-03 12:29:27 +0200
committerJohn Glover <j@johnglover.net>2012-10-03 12:29:27 +0200
commit72cbf16445e752e45807fecae1fb65425524a75b (patch)
tree33acaf5cbfd1e881c7c1aaec38255b19ca531264
parentbec907bead3e9ba31b830b643d5dbdf651202264 (diff)
downloadsimpl-72cbf16445e752e45807fecae1fb65425524a75b.tar.gz
simpl-72cbf16445e752e45807fecae1fb65425524a75b.tar.bz2
simpl-72cbf16445e752e45807fecae1fb65425524a75b.zip
[synthesis] Bug fix: return frame.synth array
from synth_frame (not frame.audio).
-rw-r--r--simpl/synthesis.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/simpl/synthesis.pyx b/simpl/synthesis.pyx
index fd945ed..87a4019 100644
--- a/simpl/synthesis.pyx
+++ b/simpl/synthesis.pyx
@@ -37,7 +37,7 @@ cdef class Synthesis:
def synth_frame(self, Frame frame not None):
self.thisptr.synth_frame(frame.thisptr)
- return frame.audio
+ return frame.synth
def synth(self, frames):
cdef int size = self.thisptr.hop_size()