diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-03-17 16:19:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-03-17 16:19:48 +0100 |
| commit | 730da23076789ff4dc02cd1ce6e20008d7719fbe (patch) | |
| tree | 47c529f42ebb442730dbdecb9c646700146d30d5 /src | |
| parent | 3b78e9223c9be784531475acacb88b59b2459f48 (diff) | |
Fix build after libdcp change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/dcp_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index 156a1a205..318e3ce52 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -288,7 +288,7 @@ DCPContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job) _cpl = examiner->cpl (); _reel_lengths = examiner->reel_lengths (); for (auto const& i: examiner->markers()) { - _markers[i.first] = ContentTime(i.second.as_editable_units(DCPTime::HZ)); + _markers[i.first] = ContentTime(i.second.as_editable_units_ceil(DCPTime::HZ)); } _ratings = examiner->ratings (); _content_versions = examiner->content_versions (); |
