X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Foptimise_stills_test.cc;h=cad7d7d263e0517ba7e1fe15fa5e87aed5877ab8;hb=4f81cdeb7802d2087244590a801ecc1a64eff0aa;hp=f2690f61eb45808ea65106208109f649f4ee43ac;hpb=ea63ad9560757e56505551db3bf2e1c31be5c76c;p=dcpomatic.git diff --git a/test/optimise_stills_test.cc b/test/optimise_stills_test.cc index f2690f61e..cad7d7d26 100644 --- a/test/optimise_stills_test.cc +++ b/test/optimise_stills_test.cc @@ -19,30 +19,29 @@ */ +#include "lib/content.h" +#include "lib/content_factory.h" +#include "lib/dcp_content_type.h" #include "lib/dcp_encoder.h" -#include "lib/writer.h" -#include "lib/transcode_job.h" -#include "lib/job_manager.h" +#include "lib/dcpomatic_log.h" #include "lib/film.h" +#include "lib/job_manager.h" #include "lib/ratio.h" -#include "lib/content_factory.h" -#include "lib/dcp_content_type.h" -#include "lib/content.h" +#include "lib/transcode_job.h" #include "lib/video_content.h" -#include "lib/dcpomatic_log.h" +#include "lib/writer.h" #include "test.h" -#include #include +#include +using std::dynamic_pointer_cast; using std::getline; using std::ifstream; using std::string; using std::vector; using boost::starts_with; using boost::split; -using std::dynamic_pointer_cast; -using std::shared_ptr; static @@ -81,7 +80,7 @@ BOOST_AUTO_TEST_CASE (optimise_stills_test1) film->set_container (Ratio::from_id ("185")); film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR")); film->set_name ("frobozz"); - auto content = content_factory("test/data/flat_red.png").front (); + auto content = content_factory("test/data/flat_red.png")[0]; film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); make_and_verify_dcp (film); @@ -98,7 +97,7 @@ BOOST_AUTO_TEST_CASE (optimise_stills_test2) film->set_container (Ratio::from_id ("185")); film->set_dcp_content_type (DCPContentType::from_isdcf_name("TLR")); film->set_name ("frobozz"); - auto content = content_factory("test/data/flat_red.png").front(); + auto content = content_factory("test/data/flat_red.png")[0]; film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); content->video->set_frame_type (VideoFrameType::THREE_D_LEFT_RIGHT);