Fix line numbers in binary STL files.
authorCarl Hetherington <cth@carlh.net>
Thu, 3 Jun 2021 19:08:37 +0000 (21:08 +0200)
committerCarl Hetherington <cth@carlh.net>
Thu, 3 Jun 2021 19:08:37 +0000 (21:08 +0200)
Here we make sure that line numbers end up not larger than the
MNR (maximum number of rows) to try to avoid subtitles going
off the screen.

src/stl_binary_reader.cc
test/stl_binary_reader_test.cc

index f441aec09a89a9f68d8ae5598e07c3219af950e9..35091f083cfbcddebcbdcb12af77595a7289d35f 100644 (file)
@@ -187,6 +187,7 @@ void STLBinaryReader::read (shared_ptr<InputReader> reader)
        editor_name = reader->get_string(309, 32);
        editor_contact_details = reader->get_string(341, 32);
 
+       int highest_line = 0;
        for (int i = 0; i < tti_blocks; ++i) {
 
                reader->read (128, "TTI");
@@ -211,10 +212,11 @@ void STLBinaryReader::read (shared_ptr<InputReader> reader)
                        RawSubtitle sub;
                        sub.from = reader->get_timecode(5, frame_rate);
                        sub.to = reader->get_timecode(9, frame_rate);
-                        /* XXX: only the vertical position of the first TTI block should be used (says the spec),
-                           so using reader->get_int(13, 1) here is wrong if i > 0
-                         */
+                       /* XXX: vertical position of TTI extension blocks should be ignored (spec page 10) so this
+                        * is wrong if the EBN of this TTI block is not 255 (I think).
+                        */
                        sub.vertical_position.line = reader->get_int(13, 1) + j;
+                       highest_line = std::max(highest_line, *sub.vertical_position.line);
                        sub.vertical_position.lines = maximum_rows;
                        sub.vertical_position.reference = TOP_OF_SCREEN;
                        sub.italic = italic;
@@ -283,6 +285,14 @@ void STLBinaryReader::read (shared_ptr<InputReader> reader)
                        /* XXX: justification */
                }
        }
+
+       /* Fix line numbers so they don't go off the bottom of the screen */
+       if (highest_line > maximum_rows) {
+               int correction = highest_line - maximum_rows;
+               for (auto& i: _subs) {
+                       *i.vertical_position.line -= correction;
+               }
+       }
 }
 
 map<string, string>
index cf97b5afb6afed8915d726c036099c28a51c4491..6566c5f161e0d0ff2b77f672c95cf3c6bb55d5d6 100644 (file)
@@ -70,15 +70,27 @@ BOOST_AUTO_TEST_CASE (stl_binary_reader_test2)
 }
 
 
-/** Test reading a file which raised "Unknown language group code U8" */
+/** Test reading a file which raised "Unknown language group code U8" and which has
+ *  bizarre line numbering.
+ */
 BOOST_AUTO_TEST_CASE (stl_binary_reader_test3)
 {
        if (private_test.empty()) {
                return;
        }
 
+       /* This file has a MNR value of 99, which (as per the spec recommendation)
+        * we "fix" to 12.  But it also has line numbers which start at 99 and go up from there,
+        * so if we don't also alter the line numbers they end up way off the bottom of the screen.
+        * Check that the line numbers are brought into the range of our "fix".
+        */
+
        auto path = private_test / "hsk.stl";
        ifstream in (path.string().c_str());
        auto reader = make_shared<sub::STLBinaryReader>(in);
+       for (auto i: reader->subtitles()) {
+               BOOST_REQUIRE(*i.vertical_position.line >= 0);
+               BOOST_REQUIRE(*i.vertical_position.line <= 12);
+       }
 }