From 3bcfb29555c8af6b1227b9048c8c851fb4b16850 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 8 May 2017 11:26:25 +0100 Subject: [PATCH] Set _finished to false when requesting a seek so that the next get_video() calls pass() enough times to get some data. --- src/lib/butler.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/butler.cc b/src/lib/butler.cc index 29f168335..f7e722272 100644 --- a/src/lib/butler.cc +++ b/src/lib/butler.cc @@ -152,6 +152,7 @@ Butler::seek (DCPTime position, bool accurate) _video.clear (); _audio.clear (); + _finished = false; _pending_seek_position = position; _pending_seek_accurate = accurate; _summon.notify_all (); -- 2.30.2