X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fvideo_mxf_content_test.cc;h=f3766e4afcbe6e731023ee5c669c6a23726b775c;hb=6e49be4baede66ce5f89c45fffafb6bdfff95401;hp=1880935b15c07f63a870efd4ba331604f9006bb2;hpb=e3dade3fa75a1f2c2b64293aa06fd49e9d0b99db;p=dcpomatic.git diff --git a/test/video_mxf_content_test.cc b/test/video_mxf_content_test.cc index 1880935b1..f3766e4af 100644 --- a/test/video_mxf_content_test.cc +++ b/test/video_mxf_content_test.cc @@ -26,22 +26,19 @@ -#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 #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_74b946f4-1c33-4209-b639-b834de675eac.mxf"; +using std::make_shared; static void note (dcp::NoteType, std::string) @@ -58,7 +55,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);