Try to clarify period from/to.
authorCarl Hetherington <cth@carlh.net>
Mon, 21 Sep 2015 09:40:51 +0000 (10:40 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 12 Oct 2015 10:05:26 +0000 (11:05 +0100)
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

index 7c8ca0530a8f357f911df8d5b96e0b502a1ca3a8..6e1d345721ea1e811df2d528044caf282a5f08a3 100644 (file)
@@ -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();
                }
        }