diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-17 22:19:02 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-17 22:19:02 +0200 |
| commit | 869462070671b273ac528e075ac1c00a417cc8a0 (patch) | |
| tree | c6a98899ff9a7f86ab061730a5fdc9b52d787a2c /src/dcp.cc | |
| parent | 0a8f2a1a2058f0461a7f978295e31af34a03bb40 (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.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}); } |
