Fix Rec 70 gammas (from Lilian Lefranc).
authorCarl Hetherington <cth@carlh.net>
Mon, 21 Oct 2013 21:41:34 +0000 (22:41 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 21 Oct 2013 21:41:34 +0000 (22:41 +0100)
ChangeLog
src/lib/config.cc

index 3e89810c9ef6f4757ef9536ff7521e1416104348..783c92df6b18fc4f9a8b9c8883f6b72912b41fd3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,12 @@
+2013-10-21  Carl Hetherington  <cth@carlh.net>
+
+       * Fix Rec. 709 gammas (from Lilian Lefranc)
+
 2013-10-20  Carl Hetherington  <cth@carlh.net>
 
        * Allow specification of subtitle language even if DVD-o-matic
        isn't providing the subtitles.
-       
+
 2013-10-20  Carl Hetherington  <cth@carlh.net>
 
        * Version 1.18 released.
index 582a14c51f101f38069cac979381322a77a476fa..e8621ace0a29c4619ddfa4aacb196021c40f3313 100644 (file)
@@ -71,7 +71,7 @@ Config::Config ()
 
        _colour_conversions.push_back (PresetColourConversion (_("sRGB"), 2.4, true, libdcp::colour_matrix::srgb_to_xyz, 2.6));
        _colour_conversions.push_back (PresetColourConversion (_("sRGB non-linearised"), 2.4, false, libdcp::colour_matrix::srgb_to_xyz, 2.6));
-       _colour_conversions.push_back (PresetColourConversion (_("Rec. 709"), 2.4, false, libdcp::colour_matrix::rec709_to_xyz, 2.2));
+       _colour_conversions.push_back (PresetColourConversion (_("Rec. 709"), 2.2, false, libdcp::colour_matrix::rec709_to_xyz, 2.6));
 }
 
 void
@@ -140,7 +140,7 @@ Config::read ()
                /* Loading version 0 (before Rec. 709 was added as a preset).
                   Add it in.
                */
-               _colour_conversions.push_back (PresetColourConversion (_("Rec. 709"), 2.4, false, libdcp::colour_matrix::rec709_to_xyz, 2.2));
+               _colour_conversions.push_back (PresetColourConversion (_("Rec. 709"), 2.2, false, libdcp::colour_matrix::rec709_to_xyz, 2.6));
        }
 
        list<shared_ptr<cxml::Node> > cin = f.node_children ("Cinema");