summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-21 10:40:51 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-12 11:05:26 +0100
commit1c20cecba6ded6c878ba67c5c2dc4950d65d9cc3 (patch)
tree4bc5d91ca102810d875295ff0c4dc70bb0ca6d9d
parent56cb528a5781e67d84bdfb6cb8223931b4d283d0 (diff)
Try to clarify period from/to.
I believe we have things set up so that if we have, say, two pieces of content of length 8 the first should start at 0 and the second at 8: Time 0--1--2--3--4--5--6--7--8 Sample | 1| 2| 3| 4| 5| 6| 7| 8|
-rw-r--r--src/lib/playlist.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc
index 7c8ca0530..6e1d34572 100644
--- a/src/lib/playlist.cc
+++ b/src/lib/playlist.cc
@@ -97,10 +97,10 @@ Playlist::maybe_sequence_video ()
if (vc->video_frame_type() == VIDEO_FRAME_TYPE_3D_RIGHT) {
vc->set_position (next_right);
- next_right = vc->end() + DCPTime::delta ();
+ next_right = vc->end();
} else {
vc->set_position (next_left);
- next_left = vc->end() + DCPTime::delta ();
+ next_left = vc->end();
}
}