diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-04-16 23:34:42 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-04-16 23:34:42 +0200 |
| commit | e46e6c6054e4294c35d0f5e17de251b2fbb94cdc (patch) | |
| tree | d0e50ab76520dcf21a80b4800b3f05271b53dea6 /src/verify_j2k.h | |
| parent | eda64d142769ca4e81578fc1dc59e265eac28ac7 (diff) | |
Check for tile parts being too big in the verifier (DoM #2450).
Diffstat (limited to 'src/verify_j2k.h')
| -rw-r--r-- | src/verify_j2k.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/verify_j2k.h b/src/verify_j2k.h index 3d9093dd..ac69155c 100644 --- a/src/verify_j2k.h +++ b/src/verify_j2k.h @@ -51,7 +51,11 @@ namespace dcp { class Data; -void verify_j2k (std::shared_ptr<const Data> data, std::vector<VerificationNote>& notes); +/** @param frame_index Video frame index, so that notes can say which frame contains the problem. + * @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 frame_index, int frame_rate, std::vector<VerificationNote>& notes); } |
