Speculative fix when solves problems when FFmpeg content has sound but missing video...
authorCarl Hetherington <cth@carlh.net>
Wed, 17 May 2017 11:53:11 +0000 (12:53 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 17 May 2017 11:53:11 +0000 (12:53 +0100)
src/lib/player.cc

index 569806d8368085c69c97d6f765a8826d89c143c5..ddf585ef11de79ef2f5914da3a57d919d7ac6d4a 100644 (file)
@@ -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;
        }