Add tentative support for the S-Gamut3/S-Log3 colourspace.
authorCarl Hetherington <cth@carlh.net>
Wed, 14 Dec 2016 16:14:41 +0000 (16:14 +0000)
committerCarl Hetherington <cth@carlh.net>
Wed, 14 Dec 2016 16:14:41 +0000 (16:14 +0000)
ChangeLog
cscript
src/lib/colour_conversion.cc
src/lib/video_content.cc
src/wx/colour_conversion_editor.cc
src/wx/colour_conversion_editor.h

index 8820c37f7fb65dc24f6c33eb23dea22e0a12bba2..21efbe48c7a4e4cbeb48daa5f2d25c030c0bda3b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2016-12-14  Carl Hetherington  <cth@carlh.net>
 
+       * Add tentative support for the S-Gamut3/S-Log3 colourspace.
+
        * Updated cs_CZ translation from Tomáš Begeni.
 
 2016-12-11  Carl Hetherington  <cth@carlh.net>
diff --git a/cscript b/cscript
index feb46ae1f12b1a768df8ef67e5fda3bc3d1f18ff..247404ea262b0d13d25a8ea41c9828272af76cb1 100644 (file)
--- a/cscript
+++ b/cscript
@@ -266,7 +266,7 @@ def dependencies(target):
         ffmpeg_options = {}
 
     return (('ffmpeg-cdist', 'c7df8d5', ffmpeg_options),
-            ('libdcp', '71f5d09'),
+            ('libdcp', '028a6d7'),
             ('libsub', 'v1.2.4'))
 
 def configure_options(target):
index aa6b61fed29e3d861f118b0855ab6bf3ddb783d4..a1885b4cb305a257c6b14827af7b0b1566993454 100644 (file)
@@ -27,6 +27,8 @@
 #include <dcp/colour_matrix.h>
 #include <dcp/gamma_transfer_function.h>
 #include <dcp/modified_gamma_transfer_function.h>
+#include <dcp/identity_transfer_function.h>
+#include <dcp/s_gamut3_transfer_function.h>
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
 #include <boost/foreach.hpp>
@@ -76,6 +78,8 @@ ColourConversion::ColourConversion (cxml::NodePtr node, int version)
                                           in_node->number_child<double> ("A"),
                                           in_node->number_child<double> ("B")
                                           ));
+               } else if (in_type == "SGamut3") {
+                       _in.reset (new dcp::SGamut3TransferFunction ());
                }
 
        } else {
@@ -122,7 +126,12 @@ ColourConversion::ColourConversion (cxml::NodePtr node, int version)
                }
        }
 
-       _out.reset (new dcp::GammaTransferFunction (node->number_child<double> ("OutputGamma")));
+       optional<double> gamma = node->optional_number_child<double> ("OutputGamma");
+       if (gamma) {
+               _out.reset (new dcp::GammaTransferFunction (node->number_child<double> ("OutputGamma")));
+       } else {
+               _out.reset (new dcp::IdentityTransferFunction ());
+       }
 }
 
 boost::optional<ColourConversion>
@@ -150,6 +159,8 @@ ColourConversion::as_xml (xmlpp::Node* node) const
                in_node->add_child("Threshold")->add_child_text (raw_convert<string> (tf->threshold ()));
                in_node->add_child("A")->add_child_text (raw_convert<string> (tf->A ()));
                in_node->add_child("B")->add_child_text (raw_convert<string> (tf->B ()));
+       } else if (dynamic_pointer_cast<const dcp::SGamut3TransferFunction> (_in)) {
+               in_node->add_child("Type")->add_child_text ("SGamut3");
        }
 
        node->add_child("YUVToRGB")->add_child_text (raw_convert<string> (static_cast<int> (_yuv_to_rgb)));
@@ -166,7 +177,10 @@ ColourConversion::as_xml (xmlpp::Node* node) const
                node->add_child("AdjustedWhiteY")->add_child_text (raw_convert<string> (_adjusted_white.get().y));
        }
 
-       node->add_child("OutputGamma")->add_child_text (raw_convert<string> (dynamic_pointer_cast<const dcp::GammaTransferFunction> (_out)->gamma ()));
+       if (dynamic_pointer_cast<const dcp::GammaTransferFunction> (_out)) {
+               shared_ptr<const dcp::GammaTransferFunction> gf = dynamic_pointer_cast<const dcp::GammaTransferFunction> (_out);
+               node->add_child("OutputGamma")->add_child_text (raw_convert<string> (gf->gamma ()));
+       }
 }
 
 optional<size_t>
@@ -215,7 +229,10 @@ ColourConversion::identifier () const
                digester.add (_adjusted_white.get().y);
        }
 
-       digester.add (dynamic_pointer_cast<const dcp::GammaTransferFunction> (_out)->gamma ());
+       shared_ptr<const dcp::GammaTransferFunction> gf = dynamic_pointer_cast<const dcp::GammaTransferFunction> (_out);
+       if (gf) {
+               digester.add (gf->gamma ());
+       }
 
        return digester.get ();
 }
@@ -268,6 +285,7 @@ PresetColourConversion::setup_colour_conversion_presets ()
        _presets.push_back (PresetColourConversion (_("P3"), "p3", dcp::ColourConversion::p3_to_xyz ()));
        _presets.push_back (PresetColourConversion (_("Rec. 1886"), "rec1886", dcp::ColourConversion::rec1886_to_xyz ()));
        _presets.push_back (PresetColourConversion (_("Rec. 2020"), "rec2020", dcp::ColourConversion::rec2020_to_xyz ()));
+       _presets.push_back (PresetColourConversion (_("S-Gamut3/S-Log3"), "sgamut3", dcp::ColourConversion::s_gamut3_to_xyz ()));
 }
 
 PresetColourConversion
index 9bb065babc3506c6751c4029b5c5fd43f59ca8e0..1b2dc34e79997adbb2be1c428890acbab8797045 100644 (file)
@@ -141,7 +141,6 @@ VideoContent::VideoContent (Content* parent, cxml::ConstNodePtr node, int versio
                _scale = VideoContentScale (node->node_child ("Scale"));
        }
 
-
        if (node->optional_node_child ("ColourConversion")) {
                _colour_conversion = ColourConversion (node->node_child ("ColourConversion"), version);
        }
index d3762b731572b8cd3c628da8108d7a6311589191..8b0dbabfef83c6f67dc491669e9fc0e86adb3614 100644 (file)
@@ -23,6 +23,8 @@
 #include "lib/colour_conversion.h"
 #include <dcp/locale_convert.h>
 #include <dcp/gamma_transfer_function.h>
+#include <dcp/identity_transfer_function.h>
+#include <dcp/s_gamut3_transfer_function.h>
 #include <dcp/modified_gamma_transfer_function.h>
 #include <wx/spinctrl.h>
 #include <wx/gbsizer.h>
@@ -32,8 +34,13 @@ using std::string;
 using std::cout;
 using boost::shared_ptr;
 using boost::dynamic_pointer_cast;
+using boost::bind;
 using dcp::locale_convert;
 
+int const ColourConversionEditor::INPUT_GAMMA = 0;
+int const ColourConversionEditor::INPUT_GAMMA_LINEARISED = 1;
+int const ColourConversionEditor::INPUT_SGAMUT3 = 2;
+
 ColourConversionEditor::ColourConversionEditor (wxWindow* parent, bool yuv)
        : wxPanel (parent, wxID_ANY)
        , _ignore_chromaticity_changed (false)
@@ -48,8 +55,12 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent, bool yuv)
 
        subhead (table, this, _("Input gamma correction"), r);
 
-       _input_gamma_linearised = new wxCheckBox (this, wxID_ANY, _("Linearise input gamma curve for small values"));
-       table->Add (_input_gamma_linearised, wxGBPosition (r, 0), wxGBSpan (1, 2));
+       add_label_to_sizer (table, this, _("Input transfer function"), true, wxGBPosition (r, 0));
+       _input = new wxChoice (this, wxID_ANY);
+       _input->Append (_("Gamma"));
+       _input->Append (_("Gamma, linearised for small values"));
+       _input->Append (_("S-Gamut3"));
+       table->Add (_input, wxGBPosition (r, 1), wxGBSpan (1, 2));
        ++r;
 
        add_label_to_sizer (table, this, _("Input gamma"), true, wxGBPosition (r, 0));
@@ -185,6 +196,12 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent, bool yuv)
                }
        }
        table->Add (bradford_sizer, wxGBPosition (r - 2, 3), wxGBSpan (2, 1));
+       ++r;
+
+       /* Output transfer function */
+
+       _output = new wxCheckBox (this, wxID_ANY, _("Inverse 2.6 gamma correction on output"));
+       table->Add (_output, wxGBPosition (r, 0), wxGBSpan (1, 2));
 
        _input_gamma->SetRange (0.1, 4.0);
        _input_gamma->SetDigits (2);
@@ -193,24 +210,25 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent, bool yuv)
        _input_power->SetDigits (6);
        _input_power->SetIncrement (0.1);
 
-       _input_gamma->Bind (wxEVT_SPINCTRLDOUBLE, boost::bind (&ColourConversionEditor::changed, this, _input_gamma));
-       _input_gamma_linearised->Bind (wxEVT_CHECKBOX, boost::bind (&ColourConversionEditor::changed, this));
-       _input_power->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::changed, this));
-       _input_threshold->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::changed, this));
-       _input_A->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::changed, this));
-       _input_B->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::changed, this));
-       _red_x->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
-       _red_y->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
-       _green_x->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
-       _green_y->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
-       _blue_x->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
-       _blue_y->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
-       _white_x->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
-       _white_y->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
-       _adjust_white->Bind (wxEVT_CHECKBOX, boost::bind (&ColourConversionEditor::adjusted_white_changed, this));
-       _adjusted_white_x->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::adjusted_white_changed, this));
-       _adjusted_white_y->Bind (wxEVT_TEXT, boost::bind (&ColourConversionEditor::adjusted_white_changed, this));
-       _yuv_to_rgb->Bind (wxEVT_CHOICE, boost::bind (&ColourConversionEditor::changed, this));
+       _input->Bind (wxEVT_CHOICE, bind (&ColourConversionEditor::changed, this));
+       _input_gamma->Bind (wxEVT_SPINCTRLDOUBLE, bind (&ColourConversionEditor::changed, this, _input_gamma));
+       _input_power->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::changed, this));
+       _input_threshold->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::changed, this));
+       _input_A->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::changed, this));
+       _input_B->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::changed, this));
+       _red_x->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::chromaticity_changed, this));
+       _red_y->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::chromaticity_changed, this));
+       _green_x->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::chromaticity_changed, this));
+       _green_y->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::chromaticity_changed, this));
+       _blue_x->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::chromaticity_changed, this));
+       _blue_y->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::chromaticity_changed, this));
+       _white_x->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::chromaticity_changed, this));
+       _white_y->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::chromaticity_changed, this));
+       _adjust_white->Bind (wxEVT_CHECKBOX, bind (&ColourConversionEditor::adjusted_white_changed, this));
+       _adjusted_white_x->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::adjusted_white_changed, this));
+       _adjusted_white_y->Bind (wxEVT_TEXT, bind (&ColourConversionEditor::adjusted_white_changed, this));
+       _yuv_to_rgb->Bind (wxEVT_CHOICE, bind (&ColourConversionEditor::changed, this));
+       _output->Bind (wxEVT_CHECKBOX, bind (&ColourConversionEditor::changed, this));
 }
 
 wxStaticText *
@@ -230,17 +248,19 @@ ColourConversionEditor::set (ColourConversion conversion)
 {
        if (dynamic_pointer_cast<const dcp::GammaTransferFunction> (conversion.in ())) {
                shared_ptr<const dcp::GammaTransferFunction> tf = dynamic_pointer_cast<const dcp::GammaTransferFunction> (conversion.in ());
-               _input_gamma_linearised->SetValue (false);
+               checked_set (_input, 0);
                set_spin_ctrl (_input_gamma, tf->gamma ());
        } else if (dynamic_pointer_cast<const dcp::ModifiedGammaTransferFunction> (conversion.in ())) {
                shared_ptr<const dcp::ModifiedGammaTransferFunction> tf = dynamic_pointer_cast<const dcp::ModifiedGammaTransferFunction> (conversion.in ());
+               checked_set (_input, 1);
                /* Arbitrary default; not used in this case (greyed out) */
                _input_gamma->SetValue (2.2);
-               _input_gamma_linearised->SetValue (true);
                set_spin_ctrl (_input_power, tf->power ());
                set_text_ctrl (_input_threshold, tf->threshold ());
                set_text_ctrl (_input_A, tf->A ());
                set_text_ctrl (_input_B, tf->B ());
+       } else if (dynamic_pointer_cast<const dcp::SGamut3TransferFunction> (conversion.in ())) {
+               checked_set (_input, 2);
        }
 
        _yuv_to_rgb->SetSelection (conversion.yuv_to_rgb ());
@@ -277,6 +297,8 @@ ColourConversionEditor::set (ColourConversion conversion)
                _adjust_white->SetValue (false);
        }
 
+       _output->SetValue (static_cast<bool> (dynamic_pointer_cast<const dcp::GammaTransferFunction> (conversion.out ())));
+
        update_rgb_to_xyz ();
        update_bradford ();
        changed ();
@@ -287,7 +309,14 @@ ColourConversionEditor::get () const
 {
        ColourConversion conversion;
 
-       if (_input_gamma_linearised->GetValue ()) {
+       switch (_input->GetSelection ()) {
+       case INPUT_GAMMA:
+               conversion.set_in (
+                       shared_ptr<dcp::GammaTransferFunction> (new dcp::GammaTransferFunction (_input_gamma->GetValue ()))
+                       );
+               break;
+       case INPUT_GAMMA_LINEARISED:
+               /* Linearised gamma */
                conversion.set_in (
                        shared_ptr<dcp::ModifiedGammaTransferFunction> (
                                new dcp::ModifiedGammaTransferFunction (
@@ -298,10 +327,11 @@ ColourConversionEditor::get () const
                                        )
                                )
                        );
-       } else {
-               conversion.set_in (
-                       shared_ptr<dcp::GammaTransferFunction> (new dcp::GammaTransferFunction (_input_gamma->GetValue ()))
-                       );
+               break;
+       case INPUT_SGAMUT3:
+               /* SGamut3 */
+               conversion.set_in (shared_ptr<dcp::SGamut3TransferFunction> (new dcp::SGamut3TransferFunction ()));
+               break;
        }
 
        conversion.set_yuv_to_rgb (static_cast<dcp::YUVToRGB> (_yuv_to_rgb->GetSelection ()));
@@ -330,7 +360,11 @@ ColourConversionEditor::get () const
                conversion.unset_adjusted_white ();
        }
 
-       conversion.set_out (shared_ptr<dcp::GammaTransferFunction> (new dcp::GammaTransferFunction (2.6)));
+       if (_output->GetValue ()) {
+               conversion.set_out (shared_ptr<dcp::GammaTransferFunction> (new dcp::GammaTransferFunction (2.6)));
+       } else {
+               conversion.set_out (shared_ptr<dcp::IdentityTransferFunction> (new dcp::IdentityTransferFunction ()));
+       }
 
        return conversion;
 }
@@ -338,12 +372,12 @@ ColourConversionEditor::get () const
 void
 ColourConversionEditor::changed ()
 {
-       bool const lin = _input_gamma_linearised->GetValue ();
-       _input_gamma->Enable (!lin);
-       _input_power->Enable (lin);
-       _input_threshold->Enable (lin);
-       _input_A->Enable (lin);
-       _input_B->Enable (lin);
+       int const in = _input->GetSelection();
+       _input_gamma->Enable (in == INPUT_GAMMA);
+       _input_power->Enable (in == INPUT_GAMMA_LINEARISED);
+       _input_threshold->Enable (in == INPUT_GAMMA_LINEARISED);
+       _input_A->Enable (in == INPUT_GAMMA_LINEARISED);
+       _input_B->Enable (in == INPUT_GAMMA_LINEARISED);
 
        Changed ();
 }
index 34fcf2cb24fb3a1d2eeae7ea97b6c7764c223507..787b615d5148741981601883ee07e0b9c8fedc2d 100644 (file)
@@ -49,15 +49,19 @@ private:
        void set_text_ctrl (wxTextCtrl *, double);
        void set_spin_ctrl (wxSpinCtrlDouble *, double);
 
+       static int const INPUT_GAMMA;
+       static int const INPUT_GAMMA_LINEARISED;
+       static int const INPUT_SGAMUT3;
+
        std::map<wxSpinCtrlDouble*, double> _last_spin_ctrl_value;
        bool _ignore_chromaticity_changed;
 
+       wxChoice* _input;
        wxSpinCtrlDouble* _input_gamma;
        wxSpinCtrlDouble* _input_power;
        wxTextCtrl* _input_threshold;
        wxTextCtrl* _input_A;
        wxTextCtrl* _input_B;
-       wxCheckBox* _input_gamma_linearised;
        wxChoice* _yuv_to_rgb;
        wxTextCtrl* _red_x;
        wxTextCtrl* _red_y;
@@ -70,6 +74,7 @@ private:
        wxCheckBox* _adjust_white;
        wxTextCtrl* _adjusted_white_x;
        wxTextCtrl* _adjusted_white_y;
+       wxCheckBox* _output;
        wxStaticText* _rgb_to_xyz[3][3];
        wxStaticText* _bradford[3][3];
 };