summaryrefslogtreecommitdiff
path: root/src/lib/dcp_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-05-16 23:14:21 +0200
committerCarl Hetherington <cth@carlh.net>2023-05-16 23:19:55 +0200
commit7ce07c5fbc70befc83e9a9220ce7204e65ee515e (patch)
tree30153bb0593a6cfdc62893e8712b7232da4f3c8a /src/lib/dcp_content.cc
parentb648505349e6a92835600429249bf220c89a128c (diff)
Don't write fonts to closed caption assets, even if we have some (re-fixing #2505).2525-ccap-fonts
Diffstat (limited to 'src/lib/dcp_content.cc')
-rw-r--r--src/lib/dcp_content.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc
index 87e59de50..8f286c5c0 100644
--- a/src/lib/dcp_content.cc
+++ b/src/lib/dcp_content.cc
@@ -278,7 +278,6 @@ DCPContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
for (int i = 0; i < examiner->text_count(TextType::CLOSED_CAPTION); ++i) {
auto c = make_shared<TextContent>(this, TextType::CLOSED_CAPTION, TextType::CLOSED_CAPTION);
c->set_dcp_track (examiner->dcp_text_track(i));
- add_fonts_from_examiner(c, examiner->fonts());
new_text.push_back (c);
}