summaryrefslogtreecommitdiff
path: root/src/verify_j2k.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-12-26 00:42:28 +0100
committerCarl Hetherington <cth@carlh.net>2024-01-03 21:26:17 +0100
commit5d3d4fbd355d8d422a4ac17f93d57ab8ef0a22ee (patch)
tree25c871e922752501f2c0245d56c4802413a4cefd /src/verify_j2k.h
parent07314aa75683a7d6d34069514a8bb377bd2def77 (diff)
Report every frame (with index) that has a JPEG2000 codestream error (DoM #2698).
Diffstat (limited to 'src/verify_j2k.h')
-rw-r--r--src/verify_j2k.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/verify_j2k.h b/src/verify_j2k.h
index ac69155c..58c8f4b7 100644
--- a/src/verify_j2k.h
+++ b/src/verify_j2k.h
@@ -51,11 +51,12 @@ namespace dcp {
class Data;
-/** @param frame_index Video frame index, so that notes can say which frame contains the problem.
+/** @param start_index Frame index within the DCP where this frame's reel starts.
+ * @param frame_index Video frame index within the reel, 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);
+void verify_j2k(std::shared_ptr<const Data> data, int start_index, int frame_index, int frame_rate, std::vector<VerificationNote>& notes);
}