summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-05-17 12:53:11 +0100
committerCarl Hetherington <cth@carlh.net>2017-05-17 12:53:11 +0100
commit732c9008999e4eeff01a72b84d2bc99dc77bd602 (patch)
tree96e2978e04b678220d498e2e5fc2672233da66e2 /src/lib
parent3fd978f5b32794c5777122e719dfae7a45146b2c (diff)
Speculative fix when solves problems when FFmpeg content has sound but missing video at its end. May cause other problems.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/player.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc
index 569806d83..ddf585ef1 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -544,7 +544,7 @@ Player::pass ()
/* Work out where to fill video from */
optional<DCPTime> video_fill_from;
- if (_last_video_time && !_playlist->video_content_at(*_last_video_time)) {
+ if (_last_video_time) {
/* Fill from the last video or seek time */
video_fill_from = _last_video_time;
}