summaryrefslogtreecommitdiff
path: root/src/lib/string_text_file_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-06-08 09:58:16 +0200
committerCarl Hetherington <cth@carlh.net>2022-06-12 15:40:33 +0200
commitc8a036eb727ceddc64a0304d781c916eb952c001 (patch)
tree86154aac21fd268af47bead23d0077c36d9e5f72 /src/lib/string_text_file_decoder.cc
parent922dc3605c29bd742a18b02fbe1faae5739b70df (diff)
Set up TextDecoder position based on the time that the next thing willv2.16.14
be emitted, instead of the time that the last thing was (#2268). This is to avoid problems with the example shown in the test, where just because a subtitle in source A comes before a subtitle in source B, source A is pass()ed next and may then emit a subtitle which should be after the next one in B.
Diffstat (limited to 'src/lib/string_text_file_decoder.cc')
-rw-r--r--src/lib/string_text_file_decoder.cc24
1 files changed, 19 insertions, 5 deletions
diff --git a/src/lib/string_text_file_decoder.cc b/src/lib/string_text_file_decoder.cc
index d5f320a27..2ec0ec1cb 100644
--- a/src/lib/string_text_file_decoder.cc
+++ b/src/lib/string_text_file_decoder.cc
@@ -40,11 +40,8 @@ StringTextFileDecoder::StringTextFileDecoder (shared_ptr<const Film> film, share
, StringTextFile (content)
, _next (0)
{
- ContentTime first;
- if (!_subtitles.empty()) {
- first = content_time_period(_subtitles[0]).from;
- }
- text.push_back (make_shared<TextDecoder>(this, content->only_text(), first));
+ text.push_back (make_shared<TextDecoder>(this, content->only_text()));
+ update_position();
}
@@ -65,6 +62,8 @@ StringTextFileDecoder::seek (ContentTime time, bool accurate)
while (_next < _subtitles.size() && ContentTime::from_seconds (_subtitles[_next].from.all_as_seconds ()) < time) {
++_next;
}
+
+ update_position();
}
@@ -79,6 +78,9 @@ StringTextFileDecoder::pass ()
only_text()->emit_plain (p, _subtitles[_next]);
++_next;
+
+ update_position();
+
return false;
}
@@ -91,3 +93,15 @@ StringTextFileDecoder::content_time_period (sub::Subtitle s) const
ContentTime::from_seconds (s.to.all_as_seconds())
);
}
+
+
+void
+StringTextFileDecoder::update_position ()
+{
+ if (_next < _subtitles.size()) {
+ only_text()->maybe_set_position(
+ ContentTime::from_seconds(_subtitles[_next].from.all_as_seconds())
+ );
+ }
+}
+