Skip to content
Snippets Groups Projects
Commit 623bfc3d authored by Philippe Gorley's avatar Philippe Gorley Committed by Philippe Gorley
Browse files

test: fix resampler test case

Change-Id: I86f08805d93c85eafa88c2a4fc61bcd092e1ea57
parent 19e3ee5c
No related branches found
No related tags found
No related merge requests found
......@@ -89,8 +89,8 @@ ResamplerTest::testAudioFrame()
AudioBuffer inbuf(1024, infmt);
auto input = inbuf.toAVFrame();
CPPUNIT_ASSERT(input->data && input->data[0]);
CPPUNIT_ASSERT(input->data[0][0] == 0);
CPPUNIT_ASSERT(input->pointer()->data && input->pointer()->data[0]);
CPPUNIT_ASSERT(input->pointer()->data[0][0] == 0);
DRing::AudioFrame out;
auto output = out.pointer();
......@@ -98,7 +98,7 @@ ResamplerTest::testAudioFrame()
output->sample_rate = 48000;
output->channel_layout = AV_CH_LAYOUT_STEREO;
int ret = resampler_->resample(input, output);
int ret = resampler_->resample(input->pointer(), output);
CPPUNIT_ASSERT_MESSAGE(libav_utils::getError(ret).c_str(), ret >= 0);
CPPUNIT_ASSERT(output->data && output->data[0]);
CPPUNIT_ASSERT(output->data[0][0] == 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment