diff options
author | Niklas Haas <git@nand.wakku.to> | 2014-03-26 23:00:09 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-06-22 19:02:00 +0200 |
commit | 204fed4d5b4aa20b5a6b5824f5d4e71ccbaf87fb (patch) | |
tree | 60605dd0ae0de7bb2a3b5ad45203a8d68fba293f /options | |
parent | ef6db24366da2974cdee1d9578cf91910b5faa9c (diff) |
video: Support BT.2020 constant luminance system
Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'options')
-rw-r--r-- | options/options.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c index d5f751b9cf..0c2f8257df 100644 --- a/options/options.c +++ b/options/options.c @@ -389,7 +389,8 @@ const m_option_t mp_opts[] = { {"BT.601", MP_CSP_BT_601}, {"BT.709", MP_CSP_BT_709}, {"SMPTE-240M", MP_CSP_SMPTE_240M}, - {"BT.2020-NC", MP_CSP_BT_2020_NC}, + {"BT.2020-NCL", MP_CSP_BT_2020_NC}, + {"BT.2020-CL", MP_CSP_BT_2020_C}, {"YCgCo", MP_CSP_YCGCO})), OPT_CHOICE("colormatrix-input-range", requested_input_range, 0, ({"auto", MP_CSP_LEVELS_AUTO}, |