summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-05-17 23:33:57 +0100
committerCarl Hetherington <cth@carlh.net>2017-05-17 23:33:57 +0100
commitf33ce8ef9af44e6fbef9cb89f11970d5ec2a1ff5 (patch)
tree9732571e918d8453b5878bedddb449ac34d789d0
parentba150e9d1e5a195b25976ac2eba254e9ba43da9b (diff)
Speculative corresponding audio fix to 732c9008999e4eeff01a72b84d2bc99dc77bd602.
-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 ddf585ef1..6b428bbac 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -564,7 +564,7 @@ Player::pass ()
}
optional<DCPTime> audio_fill_from;
- if (_last_audio_time && !_playlist->audio_content_at(*_last_audio_time)) {
+ if (_last_audio_time) {
/* Fill from the last audio or seek time */
audio_fill_from = _last_audio_time;
}