X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fplayer.h;fp=src%2Flib%2Fplayer.h;h=f5e31800d1a9910995f371b0e461be67efddb608;hp=3bd293889ac9f9f56b8fc4757513a2a8ac9bdcd1;hb=d55a89fd80f407f70037eff9fad63a2b5ddaa92a;hpb=c9882f73054187c39ed204d675104ff1e1ce56f0 diff --git a/src/lib/player.h b/src/lib/player.h index 3bd293889..f5e31800d 100644 --- a/src/lib/player.h +++ b/src/lib/player.h @@ -195,11 +195,12 @@ private: /** true if we should `play' (i.e output) referenced DCP data (e.g. for preview) */ bool _play_referenced = false; - /** Time just after the last video frame we emitted, or the time of the last accurate seek */ - boost::optional _last_video_time; - boost::optional _last_video_eyes; - /** Time just after the last audio frame we emitted, or the time of the last accurate seek */ - boost::optional _last_audio_time; + /** Time of the next video that we will emit, or the time of the last accurate seek */ + boost::optional _next_video_time; + /** Eyes of the next video that we will emit */ + boost::optional _next_video_eyes; + /** Time of the next audio that we will emit, or the time of the last accurate seek */ + boost::optional _next_audio_time; boost::optional _dcp_decode_reduction;