2010-03-15 15:11:48 -04:00
|
|
|
#include "tests/utils.h"
|
|
|
|
|
|
|
|
#include "audiographer/general/deinterleaver.h"
|
2009-12-27 09:46:23 -05:00
|
|
|
|
|
|
|
using namespace AudioGrapher;
|
|
|
|
|
|
|
|
class DeInterleaverTest : public CppUnit::TestFixture
|
|
|
|
{
|
|
|
|
CPPUNIT_TEST_SUITE (DeInterleaverTest);
|
|
|
|
CPPUNIT_TEST (testUninitialized);
|
|
|
|
CPPUNIT_TEST (testInvalidOutputIndex);
|
|
|
|
CPPUNIT_TEST (testInvalidInputSize);
|
|
|
|
CPPUNIT_TEST (testOutputSize);
|
|
|
|
CPPUNIT_TEST (testZeroInput);
|
|
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
|
|
|
|
public:
|
|
|
|
void setUp()
|
|
|
|
{
|
|
|
|
channels = 3;
|
|
|
|
frames_per_channel = 128;
|
|
|
|
total_frames = channels * frames_per_channel;
|
|
|
|
random_data = TestUtils::init_random_data (total_frames, 1.0);
|
|
|
|
|
|
|
|
deinterleaver.reset (new DeInterleaver<float>());
|
|
|
|
sink_a.reset (new VectorSink<float>());
|
|
|
|
sink_b.reset (new VectorSink<float>());
|
|
|
|
sink_c.reset (new VectorSink<float>());
|
|
|
|
}
|
|
|
|
|
|
|
|
void tearDown()
|
|
|
|
{
|
|
|
|
delete [] random_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void testUninitialized()
|
|
|
|
{
|
|
|
|
deinterleaver.reset (new DeInterleaver<float>());
|
|
|
|
CPPUNIT_ASSERT_THROW (deinterleaver->output(0)->add_output (sink_a), Exception);
|
|
|
|
}
|
|
|
|
|
|
|
|
void testInvalidOutputIndex()
|
|
|
|
{
|
|
|
|
deinterleaver->init (3, frames_per_channel);
|
|
|
|
CPPUNIT_ASSERT_THROW (deinterleaver->output(3)->add_output (sink_a), Exception);
|
|
|
|
}
|
|
|
|
|
|
|
|
void testInvalidInputSize()
|
|
|
|
{
|
|
|
|
deinterleaver->init (channels, frames_per_channel);
|
|
|
|
|
2010-03-15 15:11:48 -04:00
|
|
|
ProcessContext<float> c (random_data, 2 * total_frames, channels);
|
2009-12-27 09:46:23 -05:00
|
|
|
|
|
|
|
// Too many, frames % channels == 0
|
2010-03-15 15:11:48 -04:00
|
|
|
CPPUNIT_ASSERT_THROW (deinterleaver->process (c.beginning (total_frames + channels)), Exception);
|
2009-12-27 09:46:23 -05:00
|
|
|
|
|
|
|
// Too many, frames % channels != 0
|
2010-03-15 15:11:48 -04:00
|
|
|
CPPUNIT_ASSERT_THROW (deinterleaver->process (c.beginning (total_frames + 1)), Exception);
|
2009-12-27 09:46:23 -05:00
|
|
|
|
|
|
|
// Too few, frames % channels != 0
|
2010-03-15 15:11:48 -04:00
|
|
|
CPPUNIT_ASSERT_THROW (deinterleaver->process (c.beginning (total_frames - 1)), Exception);
|
2009-12-27 09:46:23 -05:00
|
|
|
}
|
|
|
|
|
2010-12-03 17:26:29 -05:00
|
|
|
void assert_outputs (framecnt_t expected_frames)
|
2009-12-27 09:46:23 -05:00
|
|
|
{
|
2010-12-03 17:26:29 -05:00
|
|
|
framecnt_t generated_frames = 0;
|
2009-12-27 09:46:23 -05:00
|
|
|
|
|
|
|
generated_frames = sink_a->get_data().size();
|
|
|
|
CPPUNIT_ASSERT_EQUAL (expected_frames, generated_frames);
|
|
|
|
|
|
|
|
generated_frames = sink_b->get_data().size();
|
|
|
|
CPPUNIT_ASSERT_EQUAL (expected_frames, generated_frames);
|
|
|
|
|
|
|
|
generated_frames = sink_c->get_data().size();
|
|
|
|
CPPUNIT_ASSERT_EQUAL (expected_frames, generated_frames);
|
|
|
|
}
|
|
|
|
|
|
|
|
void testOutputSize()
|
|
|
|
{
|
|
|
|
deinterleaver->init (channels, frames_per_channel);
|
|
|
|
|
|
|
|
deinterleaver->output (0)->add_output (sink_a);
|
|
|
|
deinterleaver->output (1)->add_output (sink_b);
|
|
|
|
deinterleaver->output (2)->add_output (sink_c);
|
|
|
|
|
|
|
|
// Test maximum frame input
|
|
|
|
ProcessContext<float> c (random_data, total_frames, channels);
|
|
|
|
deinterleaver->process (c);
|
|
|
|
assert_outputs (frames_per_channel);
|
|
|
|
|
|
|
|
// Now with less frames
|
2010-12-03 17:26:29 -05:00
|
|
|
framecnt_t const less_frames = frames_per_channel / 4;
|
2010-03-15 15:11:48 -04:00
|
|
|
deinterleaver->process (c.beginning (less_frames * channels));
|
2009-12-27 09:46:23 -05:00
|
|
|
assert_outputs (less_frames);
|
|
|
|
}
|
|
|
|
|
|
|
|
void testZeroInput()
|
|
|
|
{
|
|
|
|
deinterleaver->init (channels, frames_per_channel);
|
|
|
|
|
|
|
|
deinterleaver->output (0)->add_output (sink_a);
|
|
|
|
deinterleaver->output (1)->add_output (sink_b);
|
|
|
|
deinterleaver->output (2)->add_output (sink_c);
|
|
|
|
|
|
|
|
// Input zero frames
|
2010-03-15 15:11:48 -04:00
|
|
|
ProcessContext<float> c (random_data, total_frames, channels);
|
|
|
|
deinterleaver->process (c.beginning (0));
|
2009-12-27 09:46:23 -05:00
|
|
|
|
|
|
|
// ...and now test regular input
|
|
|
|
deinterleaver->process (c);
|
|
|
|
assert_outputs (frames_per_channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
boost::shared_ptr<DeInterleaver<float> > deinterleaver;
|
|
|
|
|
|
|
|
boost::shared_ptr<VectorSink<float> > sink_a;
|
|
|
|
boost::shared_ptr<VectorSink<float> > sink_b;
|
|
|
|
boost::shared_ptr<VectorSink<float> > sink_c;
|
|
|
|
|
|
|
|
float * random_data;
|
2010-12-03 17:26:29 -05:00
|
|
|
framecnt_t frames_per_channel;
|
|
|
|
framecnt_t total_frames;
|
2009-12-27 09:46:23 -05:00
|
|
|
unsigned int channels;
|
|
|
|
};
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION (DeInterleaverTest);
|
|
|
|
|