X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fsubtitle_decoder.cc;h=a95964f4773602f0acfe88b4d468909bfce0fc81;hp=d20196a63597f41a768e1aa7e1b98ab7c52010f0;hb=aeb835a18c8df347e0ed68fb24631b320abeb611;hpb=c8ff422a42eac30517a7acde57ab84e55449f4e4 diff --git a/src/lib/subtitle_decoder.cc b/src/lib/subtitle_decoder.cc index d20196a63..a95964f47 100644 --- a/src/lib/subtitle_decoder.cc +++ b/src/lib/subtitle_decoder.cc @@ -21,6 +21,7 @@ #include "subtitle_content.h" #include #include +#include using std::list; using std::cout; @@ -62,8 +63,15 @@ SubtitleDecoder::get (list const & subs, list const & sp, return list (); } - /* Seek if what we want is before what we have, or more than a reasonable amount after */ - if (subs.empty() || sp.back().to < subs.front().period().from || sp.front().from > (subs.back().period().to + ContentTime::from_seconds (5))) { + /* Seek if what we want is before what we have, or a more than a little bit after. + Be careful with the length of this `little bit'; consider the case where the last + subs were just less than this little bit B ago. Then we will not seek, but instead + pass() for nearly B seconds; if we are a FFmpegDecoder then this will generate B's + worth of video which will stack up. If B + the pre-roll is bigger than the maximum + number of frames that the VideoDecoder will keep then we will get an assertion + failure in VideoDecoder. + */ + 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); }