summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-06-06 01:56:11 +0200
committerCarl Hetherington <cth@carlh.net>2020-06-06 01:56:11 +0200
commitce9ca273648d879a4aee700593b757147336d884 (patch)
tree1369ebe60b3f517364d8d2082b595a448a0af60b
parent4c798e9ec122b8e8fcdfa4e12adb718a277329b1 (diff)
Fix erroneous hints about content being narrower than scope when it is near 2.35:1 (#1751).
-rw-r--r--src/lib/hints.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/hints.cc b/src/lib/hints.cc
index 0f18835ef..9cc10d735 100644
--- a/src/lib/hints.cc
+++ b/src/lib/hints.cc
@@ -126,7 +126,7 @@ Hints::thread ()
Ratio const * r = Ratio::nearest_from_ratio(i->video->scaled_size(film->frame_size()).ratio());
if (r && r->id() == "239") {
++scope;
- } else if (r && r->id() != "239" && r->id() != "190") {
+ } else if (r && r->id() != "239" && r->id() != "235" && r->id() != "190") {
++narrower_than_scope;
}
}
@@ -139,7 +139,7 @@ Hints::thread ()
}
if (!scope && narrower_than_scope && film_container == "239") {
- hint (_("All of your content is 2.35:1 or narrower but your DCP's container is Scope (2.39:1). This will pillar-box your content. You may prefer to set your DCP's container to have the same ratio as your content."));
+ hint (_("All of your content narrower than 1.90:1 but your DCP's container is Scope (2.39:1). This will pillar-box your content. You may prefer to set your DCP's container to have the same ratio as your content."));
}
if (film_container != "185" && film_container != "239" && film_container != "190") {