From 8a164a8b45c7c974b9abe98036f92aa76096c186 Mon Sep 17 00:00:00 2001 From: John Glover Date: Sat, 11 Aug 2012 15:47:18 +0100 Subject: [base, synthesis] Allow synth size to be independent from frame size. Call synth_frame from Cython Synthesis.synth so that derived classes synth_frame methods are called. --- tests/test_base.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests') diff --git a/tests/test_base.py b/tests/test_base.py index 6cd2d39..1a231f5 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -15,7 +15,9 @@ class TestFrame(object): def test_buffers(self): N = 256 f = base.Frame(N) + f.synth_size = N assert f.size == N + assert f.synth_size == N a = np.random.rand(N) f.audio = a -- cgit v1.2.3