diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-08-02 18:23:36 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-08-02 18:23:36 +0200 |
| commit | 7d9e108ba3629b2e9120bc1da3354935c41aca37 (patch) | |
| tree | c8ffdb2bca75d62bfe9fa2262e9fc4cd19c45027 /src/verify_j2k.h | |
| parent | 6f98afd8021f9475bbd342bdcb39162b3167fa9e (diff) | |
WIP: more hacks.shared-ptr
Diffstat (limited to 'src/verify_j2k.h')
| -rw-r--r-- | src/verify_j2k.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verify_j2k.h b/src/verify_j2k.h index dbfc488b..02efc815 100644 --- a/src/verify_j2k.h +++ b/src/verify_j2k.h @@ -48,7 +48,7 @@ namespace dcp { -class Data; +class ConstantData; /** @param start_index Frame index within the DCP where this frame's reel starts. @@ -56,7 +56,7 @@ class Data; * @param frame_rate Video frame rate (in frames per second) to calculate how big the tile parts * can be. */ -void verify_j2k(std::shared_ptr<const Data> data, int start_index, int frame_index, int frame_rate, std::vector<VerificationNote>& notes); +void verify_j2k(ConstantData const& data, int start_index, int frame_index, int frame_rate, std::vector<VerificationNote>& notes); } |
