summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-02-18 20:17:04 +0100
committerCarl Hetherington <cth@carlh.net>2020-02-18 20:17:04 +0100
commit37269d01a40b24f34be8f3ea28d0c38b2ed994b4 (patch)
tree3050ac12713e33b20b504fabe6b228ad2f105e84
parentedf88c66ae4900f6090558dda0667b19857fcb14 (diff)
Missed part of new video timing patch.
-rw-r--r--src/lib/video_decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc
index 46611bbed..142996b10 100644
--- a/src/lib/video_decoder.cc
+++ b/src/lib/video_decoder.cc
@@ -153,7 +153,7 @@ VideoDecoder::emit (shared_ptr<const Film> film, shared_ptr<const ImageProxy> im
void
VideoDecoder::seek ()
{
- _position = ContentTime();
+ _position = boost::none;
_last_emitted_frame.reset ();
_last_emitted_eyes.reset ();
}