summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-04-17 22:19:02 +0200
committerCarl Hetherington <cth@carlh.net>2024-04-17 22:19:02 +0200
commit869462070671b273ac528e075ac1c00a417cc8a0 (patch)
treec6a98899ff9a7f86ab061730a5fdc9b52d787a2c /src/dcp.cc
parent0a8f2a1a2058f0461a7f978295e31af34a03bb40 (diff)
Make some not-so-important CPL read errors non-fatal (DoM #2797).v1.8.99
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index d603cfae..eb21b47d 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -234,7 +234,7 @@ DCP::read (vector<dcp::VerificationNote>* notes, bool ignore_incorrect_picture_m
delete p;
if (root == "CompositionPlaylist") {
- auto cpl = make_shared<CPL>(path);
+ auto cpl = make_shared<CPL>(path, notes);
if (cpl->standard() != standard && notes) {
notes->push_back ({VerificationNote::Type::ERROR, VerificationNote::Code::MISMATCHED_STANDARD});
}