X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Ftest.cc;h=89ee7f619728f0391fa78f2fcbf716e2174b72d8;hb=d311043bf3c1e3e7f41b314f7ab7c91ed7e5aa7f;hp=c63dd132a1d7a446c3757a2d79f82ae298c7cf2b;hpb=e1555a8837da05f135a3705112469206fc17ec80;p=dcpomatic.git diff --git a/test/test.cc b/test/test.cc index c63dd132a..89ee7f619 100644 --- a/test/test.cc +++ b/test/test.cc @@ -369,7 +369,7 @@ rms_error (boost::filesystem::path ref, boost::filesystem::path check) auto check_image = check_proxy.image(Image::Alignment::COMPACT).image; BOOST_REQUIRE_EQUAL (ref_image->pixel_format(), check_image->pixel_format()); - AVPixelFormat const format = ref_image->pixel_format(); + auto const format = ref_image->pixel_format(); BOOST_REQUIRE (ref_image->size() == check_image->size()); int const width = ref_image->size().width; @@ -893,7 +893,7 @@ void make_and_verify_dcp (shared_ptr film, vector ignore) { film->write_metadata (); - film->make_dcp (); + film->make_dcp (TranscodeJob::ChangedBehaviour::IGNORE); BOOST_REQUIRE (!wait_for_jobs()); auto notes = dcp::verify ({film->dir(film->dcp_name())}, &stage, &progress, TestPaths::xsd()); bool ok = true;