Add OK note when PKL and CPL annotation texts match.
[libdcp.git] / src / verify_j2k.h
index 3d9093dd2ee155f4374458e4ab4413e7717035ac..58c8f4b7efdfb03293c86e298033bcfc31155a1d 100644 (file)
@@ -51,7 +51,12 @@ namespace dcp {
 class Data;
 
 
-void verify_j2k (std::shared_ptr<const Data> data, std::vector<VerificationNote>& notes);
+/** @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 start_index, int frame_index, int frame_rate, std::vector<VerificationNote>& notes);
 
 
 }