diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-10-06 00:12:28 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-10-18 20:25:57 +0200 |
| commit | 503b1905d9d6d5ffbea69a8335e97605928d4b5b (patch) | |
| tree | 7601a878c9e26bc4454e5b0d0843fe21ccc9405c /src/wx/colour_conversion_editor.cc | |
| parent | df66d09ecd119206c5a9dc803acba212715075e7 (diff) | |
Support Rec2020 YUV/RGB conversion.
Diffstat (limited to 'src/wx/colour_conversion_editor.cc')
| -rw-r--r-- | src/wx/colour_conversion_editor.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wx/colour_conversion_editor.cc b/src/wx/colour_conversion_editor.cc index b7c054e27..4cc9aaa9e 100644 --- a/src/wx/colour_conversion_editor.cc +++ b/src/wx/colour_conversion_editor.cc @@ -118,6 +118,7 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent, bool yuv) _yuv_to_rgb = new wxChoice (this, wxID_ANY); _yuv_to_rgb->Append (_("Rec. 601")); _yuv_to_rgb->Append (_("Rec. 709")); + _yuv_to_rgb->Append (_("Rec. 2020")); table->Add (_yuv_to_rgb, wxGBPosition (r, 1)); ++r; |
