summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/butler.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/butler.cc b/src/lib/butler.cc
index 3e408c4d5..191bb0a5b 100644
--- a/src/lib/butler.cc
+++ b/src/lib/butler.cc
@@ -270,8 +270,8 @@ Butler::video (shared_ptr<PlayerVideo> video, DCPTime time)
{
boost::mutex::scoped_lock lm (_mutex);
- if (_pending_seek_position || _suspended) {
- /* Don't store any video in these cases */
+ if (_pending_seek_position) {
+ /* Don't store any video in this case */
return;
}
@@ -286,7 +286,7 @@ Butler::audio (shared_ptr<AudioBuffers> audio, DCPTime time)
{
{
boost::mutex::scoped_lock lm (_mutex);
- if (_pending_seek_position || _disable_audio || _suspended) {
+ if (_pending_seek_position || _disable_audio) {
/* Don't store any audio in these cases */
return;
}