Only take subtitle data into account for position() if there is nothing v2.15.10
authorCarl Hetherington <cth@carlh.net>
Sun, 7 Jul 2019 22:12:23 +0000 (23:12 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 7 Jul 2019 22:12:23 +0000 (23:12 +0100)
else to go on.  This fixes problems at the end of muxed files when subtitle
data runs out before video/audio.  There is no (easy) way to know that this has
happened, and this seems to be the next best thing.

Fixes #1581.

src/lib/decoder.cc

index f912c473cd5d7e37513cb7fa4a93df133d2c93d6..3cadcca47198c1c79c801585b425e04971146bca 100644 (file)
@@ -52,9 +52,18 @@ Decoder::position () const
                pos = audio->position(f);
        }
 
                pos = audio->position(f);
        }
 
-       BOOST_FOREACH (shared_ptr<TextDecoder> i, text) {
-               if (!i->ignore() && (!pos || i->position(f) < *pos)) {
-                       pos = i->position(f);
+       /* Only decide position based on subtitle sources if there is nothing else
+          to go on.  Otherwise we can have problems with muxed sources which have
+          (for example) video, audio and a subtitle.  If the subtitle data runs out
+          before the video/audio the position() call will return the position of the
+          end of the subs.  This causes this file to be pass()ed in favour of others,
+          which can cause bugs like #1581.
+       */
+       if (!pos) {
+               BOOST_FOREACH (shared_ptr<TextDecoder> i, text) {
+                       if (!i->ignore() && (!pos || i->position(f) < *pos)) {
+                               pos = i->position(f);
+                       }
                }
        }
 
                }
        }