diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-11-20 00:25:27 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-11-20 21:37:37 +0100 |
| commit | 7b439c9baf719b135922e6c6b53472915fed3573 (patch) | |
| tree | 96493aefa814e5d2bcd73d1bab057d8e6f62d643 /src/lib/verify_dcp_job.h | |
| parent | 9b5cff118fe03649c0c404b35f2900ff36008637 (diff) | |
Verify encrypted DCPs (more) correctly (#2659).
Diffstat (limited to 'src/lib/verify_dcp_job.h')
| -rw-r--r-- | src/lib/verify_dcp_job.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/verify_dcp_job.h b/src/lib/verify_dcp_job.h index b00f0128b..61a347507 100644 --- a/src/lib/verify_dcp_job.h +++ b/src/lib/verify_dcp_job.h @@ -29,7 +29,7 @@ class Content; class VerifyDCPJob : public Job { public: - explicit VerifyDCPJob (std::vector<boost::filesystem::path> directories); + VerifyDCPJob(std::vector<boost::filesystem::path> directories, std::vector<boost::filesystem::path> kdms); ~VerifyDCPJob (); std::string name () const override; @@ -44,5 +44,6 @@ 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::VerificationNote> _notes; }; |
