Give DCPDecoder its own ::position which just returns its internal
[dcpomatic.git] / src / lib / dcp_decoder.cc
index 7bd7ddf68da2c00d14f3620160d055f78ebd21c1..7af89e84d074b3c791032b96327465068b645e11 100644 (file)
@@ -415,3 +415,9 @@ DCPDecoder::set_forced_reduction (optional<int> reduction)
 {
        _forced_reduction = reduction;
 }
+
+ContentTime
+DCPDecoder::position () const
+{
+       return ContentTime::from_frames(_offset, _dcp_content->active_video_frame_rate(film())) + _next;
+}