diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-04 09:29:41 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-23 11:38:43 +0200 |
| commit | 7ab22a7aa171aec36563b8ec0b7c0b69a36094fe (patch) | |
| tree | 6608008cd914f8392eaf86a65a209d3e5aa74f00 /src/lib/dcp_examiner.cc | |
| parent | 0b6f0a72c96990006d2bcf25a635ce16c2c47e59 (diff) | |
Adapt for changes to libdcp API.
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 44513ff45..65cfb884e 100644 --- a/src/lib/dcp_examiner.cc +++ b/src/lib/dcp_examiner.cc @@ -259,8 +259,8 @@ DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content, bool tolerant) _standard = cpl->standard().get(); _three_d = !cpl->reels().empty() && cpl->reels().front()->main_picture() && dynamic_pointer_cast<dcp::StereoPictureAsset> (cpl->reels().front()->main_picture()->asset()); - _ratings = list_to_vector (cpl->ratings()); - _content_version = cpl->content_version_label_text (); + _ratings = cpl->ratings(); + _content_version = cpl->content_version().label_text; _cpl = cpl->id (); } |
