summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-08-17 12:55:09 +0200
committerCarl Hetherington <cth@carlh.net>2024-08-17 12:55:09 +0200
commit32f8cc149c8c78c82f9f7e3689e43c11da362968 (patch)
tree012d643e7a6bd1178ea246fea0bb14fd65359e04 /src
parent6f6318e1860d665c1c0c30a9c5735e1355453088 (diff)
parent3970b93b18512d0316be00815a929ae7a45bafce (diff)
Merge remote-tracking branch 'origin/main' into v1.9.xv1.9.14
Diffstat (limited to 'src')
-rw-r--r--src/verify_j2k.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/verify_j2k.cc b/src/verify_j2k.cc
index 47ee151c..f89ff840 100644
--- a/src/verify_j2k.cc
+++ b/src/verify_j2k.cc
@@ -217,6 +217,7 @@ dcp::verify_j2k(shared_ptr<const Data> j2k, int start_index, int frame_index, in
if (tile_part_length > max_tile_part_size) {
VerificationNote note{VerificationNote::Type::ERROR, VerificationNote::Code::INVALID_JPEG2000_TILE_PART_SIZE};
note.set_frame(frame_index);
+ note.set_frame_rate(frame_rate);
note.set_component(tile_part_index);
note.set_size(tile_part_length);
notes.push_back(note);