From f478cdb255a1c9cfb5f172ea9ad3ed64f8bd6de1 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 8 May 2017 00:17:27 +0100 Subject: [PATCH] Fix comment. --- src/lib/player.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/player.cc b/src/lib/player.cc index dd064d3cd..0d55dd207 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -630,9 +630,10 @@ Player::video (weak_ptr wp, ContentVideo video) return; } - /* Fill gaps caused by (the hopefully rare event of) a decoder not emitting contiguous video */ + /* Fill gaps caused by (the hopefully rare event of) a decoder not emitting contiguous video. We have to do this here + as in the problematic case we are about to emit a frame which is not contiguous with the previous. + */ - /* XXX: is this necessary? can it be done by the fill in pass? */ if (_last_video_time) { fill_video (DCPTimePeriod (_last_video_time.get(), time)); } -- 2.30.2