summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-13 09:29:10 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-13 09:29:10 +0000
commit7d424ea7e085e5380e5dcbfd2f268adb67cb0e44 (patch)
treefcca90d71f840883785adb26835e909a68019a6a
parent7ecaf5c4a60c27a78da26773b0fd2eb62ef26af6 (diff)
Change 4:3 and 5:3 ratios to be precise rather than 1.33:1 and 1.66:1, and also tweak 1.19:1 (#306).
-rw-r--r--ChangeLog5
-rw-r--r--src/lib/ratio.cc6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ef132e58d..b35298c88 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,14 @@
2014-01-13 Carl Hetherington <cth@carlh.net>
+ * Change 4:3 and 5:3 ratios to be precise rather than 1.33:1 and 1.66:1, and
+ also tweak 1.19:1 (#306).
+
* Version 1.63.0 released.
2014-01-12 Carl Hetherington <cth@carlh.net>
* Fix crashes when using -3dB options in locales with a , decimal separator.
-
+
* Version 1.62.3 released.
2014-01-11 Carl Hetherington <cth@carlh.net>
diff --git a/src/lib/ratio.cc b/src/lib/ratio.cc
index 41abbb760..a47b2101e 100644
--- a/src/lib/ratio.cc
+++ b/src/lib/ratio.cc
@@ -32,11 +32,11 @@ vector<Ratio const *> Ratio::_ratios;
void
Ratio::setup_ratios ()
{
- _ratios.push_back (new Ratio (float(1285) / 1080, "119", _("1.19"), "F"));
- _ratios.push_back (new Ratio (float(1436) / 1080, "133", _("4:3"), "F"));
+ _ratios.push_back (new Ratio (float(1290) / 1080, "119", _("1.19"), "F"));
+ _ratios.push_back (new Ratio (float(1440) / 1080, "133", _("4:3"), "F"));
_ratios.push_back (new Ratio (float(1480) / 1080, "137", _("Academy"), "F"));
_ratios.push_back (new Ratio (float(1485) / 1080, "138", _("1.375"), "F"));
- _ratios.push_back (new Ratio (float(1793) / 1080, "166", _("1.66"), "F"));
+ _ratios.push_back (new Ratio (float(1800) / 1080, "166", _("1.66"), "F"));
_ratios.push_back (new Ratio (float(1920) / 1080, "178", _("16:9"), "F"));
_ratios.push_back (new Ratio (float(1998) / 1080, "185", _("Flat"), "F"));
_ratios.push_back (new Ratio (float(2048) / 858, "239", _("Scope"), "S"));