X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fj2k_bandwidth_test.cc;h=e66cf1829c3ead1659897c12fd5b5c57b06f84ad;hb=83d63558045e9c7e2a9d33074af518043c0907e5;hp=ed8f5d9c8d523e18464b7d0522503fdc52234feb;hpb=e756452872422f948b06376ccfd07dfe5bc86969;p=dcpomatic.git diff --git a/test/j2k_bandwidth_test.cc b/test/j2k_bandwidth_test.cc index ed8f5d9c8..e66cf1829 100644 --- a/test/j2k_bandwidth_test.cc +++ b/test/j2k_bandwidth_test.cc @@ -18,6 +18,11 @@ */ +/** @file test/j2k_bandwidth_test.cc + * @brief Test whether we output whatever J2K bandwidth is requested. + * @ingroup specific + */ + #include "test.h" #include "lib/dcp_content_type.h" #include "lib/film.h" @@ -40,12 +45,12 @@ check (int target_bits_per_second) film->set_name (name); film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR")); film->set_j2k_bandwidth (target_bits_per_second); - shared_ptr content (new ImageContent (film, private_data / "prophet_frame.tiff")); + shared_ptr content (new ImageContent(TestPaths::private_data / "prophet_frame.tiff")); film->examine_and_add_content (content); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); content->video->set_length (24 * duration); film->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); boost::filesystem::directory_iterator i (boost::filesystem::path ("build") / "test" / name / "video"); boost::filesystem::path test = *i++;