diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-11-15 23:07:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-11-17 00:15:18 +0100 |
| commit | 7a877ff976b119a39797c1f6e8477b92dfbb30ca (patch) | |
| tree | e1fbc87cbc5153a78cc97c9c759b591c7f208e75 /src/lib/util.cc | |
| parent | bae268cb8505bcc5bf4048cfd448168ad9bb0992 (diff) | |
Pass through <Ruby> tags in subtitles (#2635) (GH#23).
Diffstat (limited to 'src/lib/util.cc')
| -rw-r--r-- | src/lib/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index 71aee88fe..d23989afa 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -470,7 +470,7 @@ LIBDCP_ENABLE_WARNINGS vector<StringText> subs; dcp::SubtitleString ss( optional<string>(), false, false, false, dcp::Colour(), 42, 1, dcp::Time(), dcp::Time(), 0, dcp::HAlign::CENTER, 0, dcp::VAlign::CENTER, 0, dcp::Direction::LTR, - "Hello dolly", dcp::Effect::NONE, dcp::Colour(), dcp::Time(), dcp::Time(), 0 + "Hello dolly", dcp::Effect::NONE, dcp::Colour(), dcp::Time(), dcp::Time(), 0, std::vector<dcp::Ruby>() ); subs.push_back(StringText(ss, 0, make_shared<dcpomatic::Font>("foo"), dcp::SubtitleStandard::SMPTE_2014)); render_text (subs, dcp::Size(640, 480), DCPTime(), 24); |
