diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-11-21 01:59:04 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-11-21 01:59:04 +0000 |
| commit | 254b3044d72de6b033d7c584f5abd2b9aa70aad5 (patch) | |
| tree | 8a5c83c1b2dea690672663dedb2f3aa50f4473dc /test/vf_kdm_test.cc | |
| parent | c31b9542c58ae1cbfae7ec3ba4911359fd010ba2 (diff) | |
Take Film pointer out of Content.
Diffstat (limited to 'test/vf_kdm_test.cc')
| -rw-r--r-- | test/vf_kdm_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/vf_kdm_test.cc b/test/vf_kdm_test.cc index bbaa3d6d2..9b48f9b28 100644 --- a/test/vf_kdm_test.cc +++ b/test/vf_kdm_test.cc @@ -50,7 +50,7 @@ BOOST_AUTO_TEST_CASE (vf_kdm_test) A->set_name ("frobozz"); A->set_interop (true); - shared_ptr<FFmpegContent> c (new FFmpegContent (A, "test/data/test.mp4")); + shared_ptr<FFmpegContent> c (new FFmpegContent("test/data/test.mp4")); A->examine_and_add_content (c); A->set_encrypted (true); wait_for_jobs (); @@ -80,7 +80,7 @@ BOOST_AUTO_TEST_CASE (vf_kdm_test) B->set_name ("frobozz"); B->set_interop (true); - shared_ptr<DCPContent> d (new DCPContent (B, "build/test/vf_kdm_test_ov/" + A->dcp_name())); + shared_ptr<DCPContent> d (new DCPContent ("build/test/vf_kdm_test_ov/" + A->dcp_name())); d->add_kdm (A_kdm); d->set_reference_video (true); B->examine_and_add_content (d); @@ -112,7 +112,7 @@ BOOST_AUTO_TEST_CASE (vf_kdm_test) C->set_name ("frobozz"); C->set_interop (true); - shared_ptr<DCPContent> e (new DCPContent (C, "build/test/vf_kdm_test_vf/" + B->dcp_name())); + shared_ptr<DCPContent> e (new DCPContent ("build/test/vf_kdm_test_vf/" + B->dcp_name())); e->add_kdm (B_kdm); e->add_ov ("build/test/vf_kdm_test_ov/" + A->dcp_name()); C->examine_and_add_content (e); |
