From 732c9008999e4eeff01a72b84d2bc99dc77bd602 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 17 May 2017 12:53:11 +0100 Subject: Speculative fix when solves problems when FFmpeg content has sound but missing video at its end. May cause other problems. --- src/lib/player.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 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; } -- cgit v1.2.3