def dependencies(target, options):
- deps = [('libdcp', 'v1.10.16', {'c++17': build_with_cpp17(target)})]
+ deps = [('libdcp', 'v1.10.17', {'c++17': build_with_cpp17(target)})]
deps.append(('libsub', 'v1.6.53'))
deps.append(('leqm-nrt', '30dcaea1373ac62fba050e02ce5b0c1085797a23'))
deps.append(('rtaudio', 'f619b76'))
_("More JPEG2000 frames (not listed) contain the wrong number of tile parts.")
);
break;
+ case dcp::VerificationNote::Code::INVALID_JPEG2000_RSIZ_FOR_2K:
+ add(
+ i.second,
+ _("A 2K JPEG2000 frame contains an invalid Rsiz (capabilities) value of %n"),
+ _("More JPEG2000 frames (not listed) contain invalid Rsiz values.")
+ );
+ break;
+ case dcp::VerificationNote::Code::INVALID_JPEG2000_RSIZ_FOR_4K:
+ add(
+ i.second,
+ _("A 4K JPEG2000 frame contains an invalid Rsiz (capabilities) value of %n"),
+ _("More JPEG2000 frames (not listed) contain invalid Rsiz values.")
+ );
+ break;
case dcp::VerificationNote::Code::MISSING_JPEG200_TLM_MARKER:
add(
i.second,