From 1c20cecba6ded6c878ba67c5c2dc4950d65d9cc3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 21 Sep 2015 10:40:51 +0100 Subject: 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| --- src/lib/playlist.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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(); } } -- cgit v1.2.3