diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-08-30 23:16:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-08-30 23:16:21 +0100 |
| commit | 1f88a38a2a607c21988a403e76f315444c4be36b (patch) | |
| tree | 2b14f959784faf33eec61172552d9c50b72a0f65 /src/lib/dcp_examiner.cc | |
| parent | 77d2514fee2919c32e4db92b8f75369754d17fb5 (diff) | |
Make player more tolerant of some DCP errors.
Diffstat (limited to 'src/lib/dcp_examiner.cc')
| -rw-r--r-- | src/lib/dcp_examiner.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dcp_examiner.cc b/src/lib/dcp_examiner.cc index f44db84e1..8866ba721 100644 --- a/src/lib/dcp_examiner.cc +++ b/src/lib/dcp_examiner.cc @@ -52,8 +52,8 @@ using std::runtime_error; using boost::shared_ptr; using boost::dynamic_pointer_cast; -DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content) - : DCP (content) +DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content, bool tolerant) + : DCP (content, tolerant) , _video_length (0) , _audio_length (0) , _has_video (false) |
