summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/ffmpeg_decoder.cc1
-rw-r--r--src/lib/text_subtitle_decoder.cc1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/ffmpeg_decoder.cc b/src/lib/ffmpeg_decoder.cc
index 8f97cb2c1..bfc3b6132 100644
--- a/src/lib/ffmpeg_decoder.cc
+++ b/src/lib/ffmpeg_decoder.cc
@@ -584,6 +584,7 @@ FFmpegDecoder::decode_ass_subtitle (string ass, ContentTimePeriod period)
dcp::SubtitleString (
boost::optional<string> (),
k.italic,
+ k.bold,
dcp::Colour (255, 255, 255),
/* 48pt is 1/22nd of the screen height */
48,
diff --git a/src/lib/text_subtitle_decoder.cc b/src/lib/text_subtitle_decoder.cc
index 893fd5d3c..b40f83068 100644
--- a/src/lib/text_subtitle_decoder.cc
+++ b/src/lib/text_subtitle_decoder.cc
@@ -79,6 +79,7 @@ TextSubtitleDecoder::pass (PassReason, bool)
dcp::SubtitleString (
TextSubtitleContent::font_id,
j.italic,
+ j.bold,
/* force the colour to whatever is configured */
content->colour(),
j.font_size.points (72 * 11),