X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fstring_text_file_decoder.cc;h=2ec0ec1cb74f10cc3f32769c378670f97204efd3;hb=2b0e9dd97a5773f52eba5704903b82e90f4c6f63;hp=d5f320a27f83ab83fa3c1705e8e9e0c0e3f1da3b;hpb=5a820bb8fae34591be5ac6d19a73461b9dab532a;p=dcpomatic.git 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 film, share , StringTextFile (content) , _next (0) { - ContentTime first; - if (!_subtitles.empty()) { - first = content_time_period(_subtitles[0]).from; - } - text.push_back (make_shared(this, content->only_text(), first)); + text.push_back (make_shared(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()) + ); + } +} +