summaryrefslogtreecommitdiff
path: root/src/verify_j2k.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-16 00:29:19 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-20 01:51:05 +0100
commitf8b7b44ac1ea1e6744026beec57465707b04f07f (patch)
tree357d3a82a502ba366781043d2294d878df13c86f /src/verify_j2k.cc
parent9e9a2fdbecac28d8e3fa65469e800fb9634eacf9 (diff)
Fix typo in name 200 -> 2000.
Diffstat (limited to 'src/verify_j2k.cc')
-rw-r--r--src/verify_j2k.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verify_j2k.cc b/src/verify_j2k.cc
index 474bf2f5..cba00e87 100644
--- a/src/verify_j2k.cc
+++ b/src/verify_j2k.cc
@@ -361,7 +361,7 @@ dcp::verify_j2k(shared_ptr<const Data> j2k, int start_index, int frame_index, in
notes.push_back ({ VerificationNote::Type::BV21_ERROR, VerificationNote::Code::INVALID_JPEG2000_POC_MARKER_LOCATION });
}
if (!tlm) {
- notes.push_back ({ VerificationNote::Type::BV21_ERROR, VerificationNote::Code::MISSING_JPEG200_TLM_MARKER });
+ notes.push_back ({ VerificationNote::Type::BV21_ERROR, VerificationNote::Code::MISSING_JPEG2000_TLM_MARKER });
}
}
catch (InvalidCodestream const& e)