summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-01-20 23:53:54 +0100
committerCarl Hetherington <cth@carlh.net>2023-02-27 14:47:25 +0100
commitf40fa28e3ee886c160d4ced26e4e9322d7ece5f0 (patch)
tree8a4c54ca78c400cb741d60f638d125d5d45ad583
parenteef23108ceb07b56cde9f0393aeaca5b429444e6 (diff)
Use bounding_box() instead of render_text() for speed.
-rw-r--r--src/lib/analyse_subtitles_job.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/analyse_subtitles_job.cc b/src/lib/analyse_subtitles_job.cc
index d222ad3b8..f140f13d1 100644
--- a/src/lib/analyse_subtitles_job.cc
+++ b/src/lib/analyse_subtitles_job.cc
@@ -112,10 +112,10 @@ AnalyseSubtitlesJob::analyse(PlayerText const& text, TextType type)
/* We can provide dummy values for time and frame rate here as they are only used to calculate fades */
dcp::Size const frame = _film->frame_size();
- for (auto i: render_text(text.string, frame, dcpomatic::DCPTime(), 24)) {
+ for (auto i: bounding_box(text.string, frame)) {
dcpomatic::Rect<double> rect (
- double(i.position.x) / frame.width, double(i.position.y) / frame.height,
- double(i.image->size().width) / frame.width, double(i.image->size().height) / frame.height
+ double(i.x) / frame.width, double(i.y) / frame.height,
+ double(i.width) / frame.width, double(i.height) / frame.height
);
if (!_bounding_box) {
_bounding_box = rect;