Revert "Avoid decoding other packets when looking for subs."
[dcpomatic.git] / src / lib / subtitle_decoder.cc
index 5336686165d6dc12dbe94a1b15fb237f42dbafcf..a7da626b7665fb6d1af02908d7aaccb1c358f7eb 100644 (file)
@@ -21,6 +21,7 @@
 #include "subtitle_content.h"
 #include <boost/shared_ptr.hpp>
 #include <boost/foreach.hpp>
+#include <iostream>
 
 using std::list;
 using std::cout;
@@ -62,14 +63,7 @@ SubtitleDecoder::get (list<T> const & subs, list<ContentTimePeriod> const & sp,
                return list<T> ();
        }
 
-       /* 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.
-       */
+       /* 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);
        }