From: Carl Hetherington Date: Thu, 8 Jan 2015 13:22:26 +0000 (+0000) Subject: Fix build. X-Git-Tag: v2.0.48~336 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=ed5a8c669840b5c4875bf061e49e150cdd1d950a;p=dcpomatic.git Fix build. --- diff --git a/test/recover_test.cc b/test/recover_test.cc index 56a8a2f20..d442b6a4d 100644 --- a/test/recover_test.cc +++ b/test/recover_test.cc @@ -73,6 +73,6 @@ BOOST_AUTO_TEST_CASE (recover_test) shared_ptr B (new dcp::StereoPictureMXF (video)); dcp::EqualityOptions eq; - eq.mxf_names_can_differ = true; + eq.mxf_filenames_can_differ = true; BOOST_CHECK (A->equals (B, eq, boost::bind (¬e, _1, _2))); } diff --git a/test/test.cc b/test/test.cc index f31103b9b..3d58b0628 100644 --- a/test/test.cc +++ b/test/test.cc @@ -209,7 +209,7 @@ check_dcp (boost::filesystem::path ref, boost::filesystem::path check) options.max_std_dev_pixel_error = 5; options.max_audio_sample_error = 255; options.cpl_annotation_texts_can_differ = true; - options.mxf_names_can_differ = true; + options.mxf_filenames_can_differ = true; options.reel_hashes_can_differ = true; BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));