diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-09-24 13:06:20 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-09-24 13:06:20 +0200 |
| commit | 16613bce64e0bccd3e35476f489f267ec6787265 (patch) | |
| tree | 7ff7d5049bebb467d0a4408f5cc3fd22b5383932 /src/lib/ratio.cc | |
| parent | 6a485d71b312232362209ce344dff9eb1f4bc7e5 (diff) | |
Support 1420x1080 as a non-standard ratio.odd-ratio
Diffstat (limited to 'src/lib/ratio.cc')
| -rw-r--r-- | src/lib/ratio.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/ratio.cc b/src/lib/ratio.cc index 5f1a3aa63..2754bbc3a 100644 --- a/src/lib/ratio.cc +++ b/src/lib/ratio.cc @@ -43,6 +43,7 @@ Ratio::setup_ratios () DCPOMATIC_ASSERT (_ratios.empty()); _ratios.push_back (Ratio(float(1290) / 1080, "119", _("1.19"), {}, "119")); + _ratios.push_back (Ratio(float(1420) / 1080, "131", _("1.315"), {}, "131")); _ratios.push_back (Ratio(float(1440) / 1080, "133", _("1.33 (4:3)"), {}, "133")); _ratios.push_back (Ratio(float(1485) / 1080, "138", _("1.38 (Academy)"), {}, "137")); _ratios.push_back (Ratio(float(1544) / 1080, "143", _("1.43 (IMAX)"), {}, "143")); |
