From 205a2ef16919a6baa6ac37e17098038b0d68df1b Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 30 Mar 2015 21:28:42 +0200 Subject: csputils: unify names for colorspace/etc. names --- options/options.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'options/options.c') diff --git a/options/options.c b/options/options.c index 80b2c2bc5d..8c33e4560a 100644 --- a/options/options.c +++ b/options/options.c @@ -426,11 +426,11 @@ const m_option_t mp_opts[] = { OPT_FLAG("force-rgba-osd-rendering", force_rgba_osd, 0), OPT_CHOICE("colormatrix", requested_colorspace, 0, ({"auto", MP_CSP_AUTO}, - {"BT.601", MP_CSP_BT_601}, - {"BT.709", MP_CSP_BT_709}, - {"SMPTE-240M", MP_CSP_SMPTE_240M}, - {"BT.2020-NCL", MP_CSP_BT_2020_NC}, - {"BT.2020-CL", MP_CSP_BT_2020_C}, + {"bt.601", MP_CSP_BT_601}, + {"bt.709", MP_CSP_BT_709}, + {"smpte-240m", MP_CSP_SMPTE_240M}, + {"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}, @@ -442,10 +442,10 @@ const m_option_t mp_opts[] = { {"full", MP_CSP_LEVELS_PC})), OPT_CHOICE("colormatrix-primaries", requested_primaries, 0, ({"auto", MP_CSP_PRIM_AUTO}, - {"BT.601-525", MP_CSP_PRIM_BT_601_525}, - {"BT.601-625", MP_CSP_PRIM_BT_601_625}, - {"BT.709", MP_CSP_PRIM_BT_709}, - {"BT.2020", MP_CSP_PRIM_BT_2020})), + {"bt.601-525", MP_CSP_PRIM_BT_601_525}, + {"bt.601-625", MP_CSP_PRIM_BT_601_625}, + {"bt.709", MP_CSP_PRIM_BT_709}, + {"bt.2020", MP_CSP_PRIM_BT_2020})), OPT_CHOICE_OR_INT("video-rotate", video_rotate, 0, 0, 359, ({"no", -1})), OPT_VID_STEREO_MODE("video-stereo-mode", video_stereo_mode, 0), -- cgit v1.2.3