From 72cbf16445e752e45807fecae1fb65425524a75b Mon Sep 17 00:00:00 2001 From: John Glover Date: Wed, 3 Oct 2012 12:29:27 +0200 Subject: [synthesis] Bug fix: return frame.synth array from synth_frame (not frame.audio). --- simpl/synthesis.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.3