diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-10-31 00:03:49 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-11-05 00:43:19 +0100 |
| commit | e8ce097ce705446c27b51199a321a9918deaa0db (patch) | |
| tree | 0a52cbc9c52791d453fa4bd478609aedde98c831 /test/import_dcp_test.cc | |
| parent | ef65a179e8c907029d0d9254863d4884581f3d60 (diff) | |
Allow specification of which parts of the DCP to encrypt (#3099).
Diffstat (limited to 'test/import_dcp_test.cc')
| -rw-r--r-- | test/import_dcp_test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/import_dcp_test.cc b/test/import_dcp_test.cc index 8782e7f73..0201594c7 100644 --- a/test/import_dcp_test.cc +++ b/test/import_dcp_test.cc @@ -58,7 +58,8 @@ BOOST_AUTO_TEST_CASE (import_dcp_test) auto c = make_shared<FFmpegContent>("test/data/test.mp4"); auto A = new_test_film("import_dcp_test", { c }); - A->set_encrypted (true); + A->set_encrypt_picture(true); + A->set_encrypt_sound(true); A->set_dcp_content_type(DCPContentType::from_isdcf_name("TLR")); make_and_verify_dcp (A); |
