X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Fvideo_mxf_content_test.cc;h=3ecc2775e23ae97fe60c0ec41fe194baab9eab72;hb=2f0b79afd2110617fe694745a65b2350a448bd77;hp=f4f2adab0ffbe74e2b5be0bf7eb46dd0f611f378;hpb=5215408c36898039e8fa294bb74bf94d5762b0c7;p=dcpomatic.git diff --git a/test/video_mxf_content_test.cc b/test/video_mxf_content_test.cc index f4f2adab0..3ecc2775e 100644 --- a/test/video_mxf_content_test.cc +++ b/test/video_mxf_content_test.cc @@ -26,22 +26,18 @@ -#include "lib/film.h" -#include "lib/video_mxf_content.h" #include "lib/content_factory.h" #include "lib/dcp_content_type.h" +#include "lib/film.h" #include "lib/ratio.h" +#include "lib/video_mxf_content.h" #include "test.h" #include #include -using std::make_shared; -using std::shared_ptr; using std::dynamic_pointer_cast; - - -static boost::filesystem::path ref_mxf = "test/data/scaling_test_185_185/j2c_6a2ffab1-9ea5-4428-9027-9d458363c95f.mxf"; +using std::make_shared; static void note (dcp::NoteType, std::string) @@ -58,7 +54,9 @@ BOOST_AUTO_TEST_CASE (video_mxf_content_test) film->set_container (Ratio::from_id ("185")); film->set_name ("video_mxf_content_test"); - auto content = content_factory(ref_mxf).front(); + auto const ref_mxf = find_file("test/data/scaling_test_185_185", "j2c"); + + auto content = content_factory(ref_mxf)[0]; auto check = dynamic_pointer_cast (content); BOOST_REQUIRE (check); film->examine_and_add_content (content);