From 49a1e2a600bd7b9d2d4a926256378e6134704a1a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 11 May 2016 01:05:29 +0100 Subject: Fix seek, for video at least. --- src/lib/subtitle_decoder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/subtitle_decoder.cc') diff --git a/src/lib/subtitle_decoder.cc b/src/lib/subtitle_decoder.cc index f182c53e5..2da4b7a34 100644 --- a/src/lib/subtitle_decoder.cc +++ b/src/lib/subtitle_decoder.cc @@ -74,7 +74,7 @@ SubtitleDecoder::get (list const & subs, list const & sp, /* Seek if what we want is before what we have, or a more than a little bit after */ if (subs.empty() || sp.back().to < subs.front().period().from || sp.front().from > (subs.back().period().to + ContentTime::from_seconds (1))) { - seek (sp.front().from, true); + _parent->seek (sp.front().from, true); } /* Now enough pass() calls will either: -- cgit v1.2.3