diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-17 18:26:27 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-18 02:07:55 +0100 |
| commit | c715c9e35c031ece656808b20ad0f95ac9e70e7b (patch) | |
| tree | 188a15fde2aa5c0f87e2449eb519197e9390c143 /src/lib/verify_dcp_job.h | |
| parent | 566a07ab73dd2d0dfc592771a4bff9ef2357e1b6 (diff) | |
Allow VerifyDCPJob to take a vector of DecryptedKDMs.
Diffstat (limited to 'src/lib/verify_dcp_job.h')
| -rw-r--r-- | src/lib/verify_dcp_job.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/verify_dcp_job.h b/src/lib/verify_dcp_job.h index c7b21b484..96a8c8969 100644 --- a/src/lib/verify_dcp_job.h +++ b/src/lib/verify_dcp_job.h @@ -34,6 +34,13 @@ public: std::vector<boost::filesystem::path> kdms, dcp::VerificationOptions options ); + + VerifyDCPJob( + std::vector<boost::filesystem::path> directories, + std::vector<dcp::DecryptedKDM> kdms, + dcp::VerificationOptions options + ); + ~VerifyDCPJob(); std::string name() const override; @@ -52,7 +59,7 @@ private: void update_stage(std::string s, boost::optional<boost::filesystem::path> path); std::vector<boost::filesystem::path> _directories; - std::vector<boost::filesystem::path> _kdms; + std::vector<dcp::DecryptedKDM> _kdms; dcp::VerificationOptions _options; dcp::VerificationResult _result; }; |
