Change 4:3 and 5:3 ratios to be precise rather than 1.33:1 and 1.66:1, and also tweak...
authorCarl Hetherington <cth@carlh.net>
Mon, 13 Jan 2014 09:29:10 +0000 (09:29 +0000)
committerCarl Hetherington <cth@carlh.net>
Mon, 13 Jan 2014 09:29:10 +0000 (09:29 +0000)
ChangeLog
src/lib/ratio.cc

index ef132e58d28b6c952576e593664146e6030017bd..b35298c88d86467a53e1ff3ca9b897d11d3cb98e 100644 (file)
--- 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>
index 41abbb76020667df16d93e24f0aef17f8986ed9e..a47b2101e54a175ae983025852f9d16a7c81ca9a 100644 (file)
@@ -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"));