diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-05-28 23:25:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-05-28 23:25:11 +0100 |
| commit | 93439dbc6d93dafd88e80d51d6473c8d97aa02c7 (patch) | |
| tree | 60696c8c2e35a7035800aa2b8b4becdd56b339a8 /test/ffmpeg_dcp_test.cc | |
| parent | 487b34e3dfdcbeea608aa89d4999c6f201a74583 (diff) | |
Modify KDM generation to work with CPLs rather than DCPs, and allow
user to specify a particular CPL to use. Tidy up the KDM dialog
a bit.
Diffstat (limited to 'test/ffmpeg_dcp_test.cc')
| -rw-r--r-- | test/ffmpeg_dcp_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ffmpeg_dcp_test.cc b/test/ffmpeg_dcp_test.cc index 88b1e94af..4922ec4d4 100644 --- a/test/ffmpeg_dcp_test.cc +++ b/test/ffmpeg_dcp_test.cc @@ -49,16 +49,16 @@ BOOST_AUTO_TEST_CASE (ffmpeg_dcp_test) wait_for_jobs (); } -/** Test Film::have_dcp(). Requires the output from ffmpeg_dcp_test above */ +/** Briefly test Film::cpls(). Requires the output from ffmpeg_dcp_test above */ BOOST_AUTO_TEST_CASE (ffmpeg_have_dcp_test) { boost::filesystem::path p = test_film_dir ("ffmpeg_dcp_test"); shared_ptr<Film> f (new Film (p.string ())); f->read_metadata (); - BOOST_CHECK (!f->dcps().empty()); + BOOST_CHECK (!f->cpls().empty()); p /= f->dcp_name(); p /= f->video_mxf_filename(); boost::filesystem::remove (p); - BOOST_CHECK (f->dcps().empty()); + BOOST_CHECK (f->cpls().empty()); } |
