X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fframe_rate_test.cc;h=76a8ed5cbefe56c0872161126de9a81a926ef6ac;hb=25eb7aa723af004162fc7f95995df250c4e4571b;hp=4192ce5e2d3da0ce88207d659c5483f346b04ac4;hpb=254b3044d72de6b033d7c584f5abd2b9aa70aad5;p=dcpomatic.git diff --git a/test/frame_rate_test.cc b/test/frame_rate_test.cc index 4192ce5e2..76a8ed5cb 100644 --- a/test/frame_rate_test.cc +++ b/test/frame_rate_test.cc @@ -21,7 +21,7 @@ /** @file test/frame_rate_test.cc * @brief Tests for FrameRateChange and the computation of the best * frame rate for the DCP. - * @ingroup specific + * @ingroup feature */ #include @@ -35,7 +35,7 @@ #include "lib/audio_content.h" #include "test.h" -using boost::shared_ptr; +using std::shared_ptr; /* Test Playlist::best_dcp_frame_rate and FrameRateChange with a single piece of content. @@ -46,7 +46,7 @@ BOOST_AUTO_TEST_CASE (best_dcp_frame_rate_test_single) /* Get any piece of content, it doesn't matter what */ shared_ptr content (new FFmpegContent("test/data/test.mp4")); film->examine_and_add_content (content); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); /* Run some tests with a limited range of allowed rates */ @@ -165,7 +165,7 @@ BOOST_AUTO_TEST_CASE (best_dcp_frame_rate_test_single) Config::instance()->set_allowed_dcp_frame_rates (afr); content->_video_frame_rate = 60; - best = film->best_video_frame_rate (); + best = film->playlist()->best_video_frame_rate (); frc = FrameRateChange (60, best); BOOST_CHECK_EQUAL (best, 60); BOOST_CHECK_EQUAL (frc.skip, false); @@ -174,7 +174,7 @@ BOOST_AUTO_TEST_CASE (best_dcp_frame_rate_test_single) BOOST_CHECK_CLOSE (frc.speed_up, 1, 0.1); content->_video_frame_rate = 50; - best = film->best_video_frame_rate (); + best = film->playlist()->best_video_frame_rate (); frc = FrameRateChange (50, best); BOOST_CHECK_EQUAL (best, 50); BOOST_CHECK_EQUAL (frc.skip, false); @@ -183,7 +183,7 @@ BOOST_AUTO_TEST_CASE (best_dcp_frame_rate_test_single) BOOST_CHECK_CLOSE (frc.speed_up, 1, 0.1); content->_video_frame_rate = 48; - best = film->best_video_frame_rate (); + best = film->playlist()->best_video_frame_rate (); frc = FrameRateChange (48, best); BOOST_CHECK_EQUAL (best, 48); BOOST_CHECK_EQUAL (frc.skip, false); @@ -226,7 +226,7 @@ BOOST_AUTO_TEST_CASE (best_dcp_frame_rate_test_double) film->examine_and_add_content (A); shared_ptr B (new FFmpegContent("test/data/test.mp4")); film->examine_and_add_content (B); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); /* Run some tests with a limited range of allowed rates */ @@ -255,7 +255,7 @@ BOOST_AUTO_TEST_CASE (audio_sampling_rate_test) /* Get any piece of content, it doesn't matter what */ shared_ptr content (new FFmpegContent("test/data/test.mp4")); film->examine_and_add_content (content); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); std::list afr; afr.push_back (24); @@ -275,7 +275,7 @@ BOOST_AUTO_TEST_CASE (audio_sampling_rate_test) BOOST_CHECK_EQUAL (content->audio->resampled_frame_rate(film), 48000); stream->_frame_rate = 80000; - BOOST_CHECK_EQUAL (content->audio->resampled_frame_rate(film), 96000); + BOOST_CHECK_EQUAL (content->audio->resampled_frame_rate(film), 48000); content->_video_frame_rate = 23.976; film->set_video_frame_rate (24);