diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-18 14:23:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-12-18 14:23:50 +0100 |
| commit | 9ebbeae21efe950c4f18a9f959a8fe9f0be4e8f4 (patch) | |
| tree | 7dd03bf0d57ff95b94da08b2b095065ef4f923c1 /test/test.cc | |
| parent | c6df41f00083b4c34d4993c981cdac97b76eeb95 (diff) | |
Move make_dcp() out of Film (#2132).
Diffstat (limited to 'test/test.cc')
| -rw-r--r-- | test/test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test.cc b/test/test.cc index 7f8681790..ae1453a9d 100644 --- a/test/test.cc +++ b/test/test.cc @@ -38,6 +38,7 @@ #include "lib/job.h" #include "lib/job_manager.h" #include "lib/log_entry.h" +#include "lib/make_dcp.h" #include "lib/ratio.h" #include "lib/signal_manager.h" #include "lib/util.h" @@ -887,7 +888,7 @@ void make_and_verify_dcp (shared_ptr<Film> film, vector<dcp::VerificationNote::Code> ignore) { film->write_metadata (); - film->make_dcp (TranscodeJob::ChangedBehaviour::IGNORE); + make_dcp (film, TranscodeJob::ChangedBehaviour::IGNORE); BOOST_REQUIRE (!wait_for_jobs()); auto notes = dcp::verify ({film->dir(film->dcp_name())}, &stage, &progress, TestPaths::xsd()); bool ok = true; |
