diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-16 00:29:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-20 01:51:05 +0100 |
| commit | f8b7b44ac1ea1e6744026beec57465707b04f07f (patch) | |
| tree | 357d3a82a502ba366781043d2294d878df13c86f | |
| parent | 9e9a2fdbecac28d8e3fa65469e800fb9634eacf9 (diff) | |
Fix typo in name 200 -> 2000.
| -rw-r--r-- | src/verify.cc | 2 | ||||
| -rw-r--r-- | src/verify.h | 2 | ||||
| -rw-r--r-- | src/verify_j2k.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/verify.cc b/src/verify.cc index 2f094ebe..a1820cce 100644 --- a/src/verify.cc +++ b/src/verify.cc @@ -2117,7 +2117,7 @@ dcp::note_to_string(VerificationNote note, function<string (string)> process_str case VerificationNote::Code::INVALID_JPEG2000_RSIZ_FOR_2K: case VerificationNote::Code::INVALID_JPEG2000_RSIZ_FOR_4K: return compose("The JPEG2000 codestream has an invalid Rsiz (capabilities) value of %1.", note.note().get()); - case VerificationNote::Code::MISSING_JPEG200_TLM_MARKER: + case VerificationNote::Code::MISSING_JPEG2000_TLM_MARKER: return process_string("No TLM marker was found in a JPEG2000 codestream."); case VerificationNote::Code::MISMATCHED_TIMED_TEXT_RESOURCE_ID: return process_string("The Resource ID in a timed text MXF did not match the ID of the contained XML."); diff --git a/src/verify.h b/src/verify.h index 6499f815..a9ebfb44 100644 --- a/src/verify.h +++ b/src/verify.h @@ -413,7 +413,7 @@ public: /** Invalid Rsiz (capabilities) value in 4K JPEG2000 stream */ INVALID_JPEG2000_RSIZ_FOR_4K, /** No TLM marker was found [Bv2.1_10.2.1] */ - MISSING_JPEG200_TLM_MARKER, + MISSING_JPEG2000_TLM_MARKER, /** The MXF _ResourceID_ of a timed text resource was not the same as that of the contained XML essence [Bv2.1_10.4.3] */ MISMATCHED_TIMED_TEXT_RESOURCE_ID, /** The AssetID of a timed text MXF is the same as its _ResourceID_ or that of the contained XML essence [Bv2.1_10.4.2] */ 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) |
