Fix timestamps of things coming out of the DCP decoder for multi-reel.
authorCarl Hetherington <cth@carlh.net>
Thu, 5 Nov 2015 20:47:41 +0000 (20:47 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 5 Nov 2015 20:47:41 +0000 (20:47 +0000)
ChangeLog
src/lib/dcp_decoder.cc

index 56ee945c2a15a3976fcfba470c4741c210ac0f5e..889de809f62274ce98f60d6ddaa92af382dc07c6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-11-05  Carl Hetherington  <cth@carlh.net>
+
+       * Correct time display when previewing multi-reel DCP content.
+
 2015-11-05  c.hetherington  <cth@carlh.net>
 
        * Updated nl_NL translation from Rob van Nieuwkerk.
index c968259b3d5ae6d400ea8d3365a63986df1a6f25..379ce5a892a7c84933d74aeb3e3dd65f64f6f422 100644 (file)
@@ -65,7 +65,17 @@ DCPDecoder::pass (PassReason reason, bool)
                return true;
        }
 
+       /* Offset of the start of the current reel from the start of the content in frames */
+       int offset = 0;
+       list<shared_ptr<dcp::Reel> >::const_iterator i = _reels.begin();
+       while (i != _reel) {
+               offset += (*i)->main_picture()->duration ();
+               ++i;
+       }
+
        double const vfr = _dcp_content->video_frame_rate ();
+
+       /* Frame within the (played part of the) reel that is coming up next */
        int64_t const frame = _next.frames_round (vfr);
 
        if ((*_reel)->main_picture () && reason != PASS_REASON_SUBTITLE) {
@@ -74,16 +84,16 @@ DCPDecoder::pass (PassReason reason, bool)
                shared_ptr<dcp::StereoPictureAsset> stereo = dynamic_pointer_cast<dcp::StereoPictureAsset> (asset);
                int64_t const entry_point = (*_reel)->main_picture()->entry_point ();
                if (mono) {
-                       video (shared_ptr<ImageProxy> (new J2KImageProxy (mono->get_frame (entry_point + frame), asset->size())), frame);
+                       video (shared_ptr<ImageProxy> (new J2KImageProxy (mono->get_frame (entry_point + frame), asset->size())), offset + frame);
                } else {
                        video (
                                shared_ptr<ImageProxy> (new J2KImageProxy (stereo->get_frame (entry_point + frame), asset->size(), dcp::EYE_LEFT)),
-                               frame
+                               offset + frame
                                );
 
                        video (
                                shared_ptr<ImageProxy> (new J2KImageProxy (stereo->get_frame (entry_point + frame), asset->size(), dcp::EYE_RIGHT)),
-                               frame
+                               offset + frame
                                );
                }
        }
@@ -103,7 +113,7 @@ DCPDecoder::pass (PassReason reason, bool)
                        }
                }
 
-               audio (_dcp_content->audio_stream(), data, _next);
+               audio (_dcp_content->audio_stream(), data, ContentTime::from_frames (offset, vfr) + _next);
        }
 
        if ((*_reel)->main_subtitle ()) {
@@ -118,8 +128,8 @@ DCPDecoder::pass (PassReason reason, bool)
                        /* XXX: assuming that all `subs' are at the same time; maybe this is ok */
                        text_subtitle (
                                ContentTimePeriod (
-                                       ContentTime::from_seconds (subs.front().in().as_seconds ()),
-                                       ContentTime::from_seconds (subs.front().out().as_seconds ())
+                                       ContentTime::from_frames (offset - entry_point, vfr) + ContentTime::from_seconds (subs.front().in().as_seconds ()),
+                                       ContentTime::from_frames (offset - entry_point, vfr) + ContentTime::from_seconds (subs.front().out().as_seconds ())
                                        ),
                                subs
                                );