diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-19 21:49:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-19 21:49:40 +0100 |
| commit | b5362c8fe1244506e05d18c93026150886171b8f (patch) | |
| tree | 3b6c1efe89beeb17ff81d17bb59265fbc45f1175 /src/lib | |
| parent | 74417f75e11fd5b0bc152917e7661bf962957c60 (diff) | |
Fix by-video-content reel split when there is content after the last video content.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/film.cc | 23 | ||||
| -rw-r--r-- | src/lib/playlist.cc | 2 |
2 files changed, 18 insertions, 7 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index ace180d1d..47bcc35df 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -1299,20 +1299,31 @@ Film::reels () const break; case REELTYPE_BY_VIDEO_CONTENT: { - optional<DCPTime> last; + optional<DCPTime> last_split; + shared_ptr<VideoContent> last_video; + ContentList cl = content (); BOOST_FOREACH (shared_ptr<Content> c, content ()) { shared_ptr<VideoContent> v = dynamic_pointer_cast<VideoContent> (c); if (v) { BOOST_FOREACH (DCPTime t, v->reel_split_points()) { - if (last) { - p.push_back (DCPTimePeriod (last.get(), t)); + if (last_split) { + p.push_back (DCPTimePeriod (last_split.get(), t)); } - last = t; + last_split = t; } + last_video = v; } } - if (last) { - p.push_back (DCPTimePeriod (last.get(), len)); + + DCPTime video_end = last_video ? last_video->end() : DCPTime(0); + if (last_split) { + /* Definitely go from the last split to the end of the video content */ + p.push_back (DCPTimePeriod (last_split.get(), video_end)); + } + + if (video_end < len) { + /* And maybe go after that as well if there is any non-video hanging over the end */ + p.push_back (DCPTimePeriod (video_end, len)); } break; } diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc index 6e1d34572..c9de9b88f 100644 --- a/src/lib/playlist.cc +++ b/src/lib/playlist.cc @@ -351,7 +351,7 @@ ContentSorter::operator() (shared_ptr<Content> a, shared_ptr<Content> b) return a->position() < b->position(); } -/** @return content in an undefined order */ +/** @return content in ascending order of position */ ContentList Playlist::content () const { |
