From 41fc6e366ad3de85704c35961beaf539ab9ceb8b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 17 Jan 2014 17:11:32 +0000 Subject: namespace libdcp -> dcp. --- test/decryption_test.cc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'test/decryption_test.cc') diff --git a/test/decryption_test.cc b/test/decryption_test.cc index 0f5a4ef0..5fd29c6c 100644 --- a/test/decryption_test.cc +++ b/test/decryption_test.cc @@ -30,15 +30,15 @@ using boost::dynamic_pointer_cast; using boost::shared_ptr; -static shared_ptr -get_frame (libdcp::DCP const & dcp) +static shared_ptr +get_frame (dcp::DCP const & dcp) { - shared_ptr reel = dcp.cpls().front()->reels().front (); - shared_ptr picture = reel->main_picture (); + shared_ptr reel = dcp.cpls().front()->reels().front (); + shared_ptr picture = reel->main_picture (); BOOST_CHECK (picture); - shared_ptr mono_picture = dynamic_pointer_cast (picture); - shared_ptr j2k_frame = mono_picture->get_frame (0); + shared_ptr mono_picture = dynamic_pointer_cast (picture); + shared_ptr j2k_frame = mono_picture->get_frame (0); return j2k_frame->argb_frame (); } @@ -47,25 +47,25 @@ BOOST_AUTO_TEST_CASE (decryption_test) { boost::filesystem::path plaintext_path = test_corpus; plaintext_path /= "TONEPLATES-SMPTE-PLAINTEXT_TST_F_XX-XX_ITL-TD_51-XX_2K_WOE_20111001_WOE_OV"; - libdcp::DCP plaintext (plaintext_path.string ()); + dcp::DCP plaintext (plaintext_path.string ()); plaintext.read (); BOOST_CHECK_EQUAL (plaintext.encrypted (), false); boost::filesystem::path encrypted_path = test_corpus; encrypted_path /= "TONEPLATES-SMPTE-ENCRYPTED_TST_F_XX-XX_ITL-TD_51-XX_2K_WOE_20111001_WOE_OV"; - libdcp::DCP encrypted (encrypted_path.string ()); + dcp::DCP encrypted (encrypted_path.string ()); encrypted.read (); BOOST_CHECK_EQUAL (encrypted.encrypted (), true); - libdcp::KDM kdm ( + dcp::KDM kdm ( "test/data/kdm_TONEPLATES-SMPTE-ENC_.smpte-430-2.ROOT.NOT_FOR_PRODUCTION_20130706_20230702_CAR_OV_t1_8971c838.xml", "test/data/private.key" ); encrypted.add_kdm (kdm); - shared_ptr plaintext_frame = get_frame (plaintext); - shared_ptr encrypted_frame = get_frame (encrypted); + shared_ptr plaintext_frame = get_frame (plaintext); + shared_ptr encrypted_frame = get_frame (encrypted); /* Check that plaintext and encrypted are the same */ BOOST_CHECK_EQUAL (plaintext_frame->stride(), encrypted_frame->stride()); @@ -77,7 +77,7 @@ BOOST_AUTO_TEST_CASE (decryption_test) /** Load in a KDM that didn't work at first */ BOOST_AUTO_TEST_CASE (failing_kdm_test) { - libdcp::KDM kdm ( + dcp::KDM kdm ( "test/data/target.pem.crt.de5d4eba-e683-41ca-bdda-aa4ad96af3f4.kdm.xml", "test/data/private.key" ); -- cgit v1.2.3