From 0758d834992f0adb8aa8d4d9908a64ce8708f05c Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 10 May 2016 14:37:57 +0100 Subject: Rename some methods. --- test/ffmpeg_decoder_sequential_test.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ffmpeg_decoder_sequential_test.cc') diff --git a/test/ffmpeg_decoder_sequential_test.cc b/test/ffmpeg_decoder_sequential_test.cc index e1e29ab17..3548d15f2 100644 --- a/test/ffmpeg_decoder_sequential_test.cc +++ b/test/ffmpeg_decoder_sequential_test.cc @@ -55,15 +55,15 @@ ffmpeg_decoder_sequential_test_one (boost::filesystem::path file, float fps, int shared_ptr log (new NullLog); shared_ptr decoder (new FFmpegDecoder (content, log, false)); - BOOST_REQUIRE (decoder->video->_video_content->video_frame_rate()); - BOOST_CHECK_CLOSE (decoder->video->_video_content->video_frame_rate().get(), fps, 0.01); + BOOST_REQUIRE (decoder->video->_content->video_frame_rate()); + BOOST_CHECK_CLOSE (decoder->video->_content->video_frame_rate().get(), fps, 0.01); #ifdef DCPOMATIC_DEBUG decoder->video->test_gaps = 0; #endif for (Frame i = 0; i < video_length; ++i) { list v; - v = decoder->video->get_video (i, true); + v = decoder->video->get (i, true); BOOST_REQUIRE_EQUAL (v.size(), 1U); BOOST_CHECK_EQUAL (v.front().frame, i); } -- cgit v1.2.3