Stop empty Font IDs in imported DCP subtitles making it into the
authorCarl Hetherington <cth@carlh.net>
Sun, 15 Dec 2019 22:35:03 +0000 (23:35 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 15 Dec 2019 22:35:03 +0000 (23:35 +0100)
output DCP (#1689).

Back-ported from d8d4225a3e488cf78438b80938aa18fd07d30a06 in v2.15.x

cscript
src/lib/dcp_subtitle_content.cc
src/lib/dcp_subtitle_decoder.cc
test/dcp_subtitle_test.cc
wscript

diff --git a/cscript b/cscript
index 98c9e5b227d1cf436d7501d40ae8d65c45f7afb4..74da1bc7438081191b975478592cd35954a5a640 100644 (file)
--- a/cscript
+++ b/cscript
@@ -344,8 +344,8 @@ def dependencies(target):
         # Use distro-provided FFmpeg on Arch
         deps = []
 
-    deps.append(('libdcp', 'v1.6.13'))
-    deps.append(('libsub', 'v1.4.15'))
+    deps.append(('libdcp', 'v1.6.14'))
+    deps.append(('libsub', 'v1.4.16'))
     deps.append(('rtaudio-cdist', 'bf0fc23'))
 
     return deps
index 54bd631cb6586a03dc7ee15c9831193e78c78e56..63ee19830bb62bb8a16c33477f25fef9b4283113 100644 (file)
@@ -76,6 +76,8 @@ DCPSubtitleContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
 
        _length = ContentTime::from_seconds (sc->latest_subtitle_out().as_seconds ());
 
+       sc->fix_empty_font_ids ();
+
        BOOST_FOREACH (shared_ptr<dcp::LoadFontNode> i, sc->load_font_nodes ()) {
                only_text()->add_font (shared_ptr<Font> (new Font (i->id)));
        }
index 3a182c0c7a20c4ea953c6ea02ad601c051029d60..e76004c2ce50bea1de5cdc7066617de78e10a5d6 100644 (file)
@@ -33,6 +33,7 @@ DCPSubtitleDecoder::DCPSubtitleDecoder (shared_ptr<const Film> film, shared_ptr<
        : Decoder (film)
 {
        shared_ptr<dcp::SubtitleAsset> c (load (content->path (0)));
+       c->fix_empty_font_ids ();
        _subtitles = c->subtitles ();
        _next = _subtitles.begin ();
 
index 89eb11a6056b724ed4b232d4c643f30c8b1b03bc..17569d68ed1dfeaa1cbddee5e62a2c46e6c1c49d 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -181,3 +181,39 @@ BOOST_AUTO_TEST_CASE (dcp_subtitle_test4)
        doc.read_file (subtitle_file (film));
        BOOST_REQUIRE_EQUAL (doc.node_children("LoadFont").size(), 1);
 }
+
+static
+void
+check_font_tags (list<cxml::NodePtr> nodes)
+{
+       BOOST_FOREACH (cxml::NodePtr i, nodes) {
+               if (i->name() == "Font") {
+                       BOOST_CHECK (!i->optional_string_attribute("Id") || i->string_attribute("Id") != "");
+               }
+               check_font_tags (i->node_children());
+       }
+}
+
+/** Check that imported <LoadFont> tags with empty IDs (or corresponding Font tags with empty IDs)
+ *  are not passed through into the DCP.
+ */
+BOOST_AUTO_TEST_CASE (dcp_subtitle_test5)
+{
+       shared_ptr<Film> film = new_test_film2 ("dcp_subtitle_test5");
+       film->set_interop (true);
+
+       shared_ptr<DCPSubtitleContent> content (new DCPSubtitleContent("test/data/dcp_sub6.xml"));
+       film->examine_and_add_content (content);
+       BOOST_REQUIRE (!wait_for_jobs());
+
+       film->make_dcp ();
+       BOOST_REQUIRE (!wait_for_jobs());
+       film->write_metadata ();
+
+       cxml::Document doc ("DCSubtitle");
+       doc.read_file (subtitle_file(film));
+       BOOST_REQUIRE_EQUAL (doc.node_children("LoadFont").size(), 1);
+       BOOST_CHECK (doc.node_children("LoadFont").front()->string_attribute("Id") != "");
+
+       check_font_tags (doc.node_children());
+}
diff --git a/wscript b/wscript
index b3d96941bc2f8bb0aae82db5f36f5671268d8b25..c7d1a729f70289f95b1fca90918b6d76e38ef6d4 100644 (file)
--- a/wscript
+++ b/wscript
@@ -313,12 +313,12 @@ def configure(conf):
 
     # libdcp
     if conf.options.static_dcp:
-        conf.check_cfg(package='libdcp-1.0', atleast_version='1.6.13', args='--cflags', uselib_store='DCP', mandatory=True)
+        conf.check_cfg(package='libdcp-1.0', atleast_version='1.6.14', args='--cflags', uselib_store='DCP', mandatory=True)
         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
         conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-cth', 'kumu-cth', 'openjp2']
         conf.env.LIB_DCP = ['glibmm-2.4', 'ssl', 'crypto', 'bz2', 'xslt']
     else:
-        conf.check_cfg(package='libdcp-1.0', atleast_version='1.6.13', args='--cflags --libs', uselib_store='DCP', mandatory=True)
+        conf.check_cfg(package='libdcp-1.0', atleast_version='1.6.14', args='--cflags --libs', uselib_store='DCP', mandatory=True)
         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
 
     # libsub