From 35f74ab36af2487423b2ef7b7d22438efe2e9fbd Mon Sep 17 00:00:00 2001 From: John Glover Date: Wed, 12 Sep 2012 20:15:41 +0200 Subject: [base, synthesis] Allow synthesis sample arrays to be created and destroyed independently of input audio sample arrays in Frame objects. Fix bug in Cython synthesis wrapper that prevented the hop size from being changed correctly. Don't create memory in non-real-time synthesis function as it is now managed by the Frame object itself. --- tests/test_synthesis.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test_synthesis.cpp b/tests/test_synthesis.cpp index f4d215d..50ca6ed 100644 --- a/tests/test_synthesis.cpp +++ b/tests/test_synthesis.cpp @@ -39,8 +39,12 @@ protected: frames = synth->synth(frames); for(int i = 0; i < frames.size(); i++) { - CPPUNIT_ASSERT(frames[i]->num_peaks() > 0); - CPPUNIT_ASSERT(frames[i]->num_partials() > 0); + // if Loris thinPeaks is used, final frame will have no peaks + // so don't check it + if(i < frames.size() - 1) { + CPPUNIT_ASSERT(frames[i]->num_peaks() > 0); + CPPUNIT_ASSERT(frames[i]->num_partials() > 0); + } double energy = 0.f; for(int j = 0; j < synth->hop_size(); j++) { -- cgit v1.2.3