diff options
author | John Glover <j@johnglover.net> | 2012-10-03 12:29:27 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-10-03 12:29:27 +0200 |
commit | 72cbf16445e752e45807fecae1fb65425524a75b (patch) | |
tree | 33acaf5cbfd1e881c7c1aaec38255b19ca531264 | |
parent | bec907bead3e9ba31b830b643d5dbdf651202264 (diff) | |
download | simpl-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.pyx | 2 |
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() |