summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-03-30 21:28:42 +0200
committerwm4 <wm4@nowhere>2015-03-31 00:09:03 +0200
commit205a2ef16919a6baa6ac37e17098038b0d68df1b (patch)
tree7d673021b1cdc70c25e73b77d7e56d7ead440a4d /options
parent39f6f6b104ea51848ab99dd08e33745a9ad976eb (diff)
downloadmpv-205a2ef16919a6baa6ac37e17098038b0d68df1b.tar.bz2
mpv-205a2ef16919a6baa6ac37e17098038b0d68df1b.tar.xz
csputils: unify names for colorspace/etc. names
Diffstat (limited to 'options')
-rw-r--r--options/options.c18
1 files changed, 9 insertions, 9 deletions
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),