summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-02 15:58:40 +0200
committerwm4 <wm4@nowhere>2016-09-02 15:58:40 +0200
commita07dae57e31882024518008c5c1c45f932c15193 (patch)
tree42dc103f04cc23a742e5c5e47eb1fad61e4b7bf7
parent72c6bf1345235801dc8916a907360fd7e2514933 (diff)
downloadmpv-a07dae57e31882024518008c5c1c45f932c15193.tar.bz2
mpv-a07dae57e31882024518008c5c1c45f932c15193.tar.xz
vo_opengl: rename 3dlut-size to icc-3dlut-size
Not documenting this yet, because a later commit will change all the options anyway.
-rw-r--r--video/out/opengl/lcms.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/video/out/opengl/lcms.c b/video/out/opengl/lcms.c
index ec352cde05..466c74c96e 100644
--- a/video/out/opengl/lcms.c
+++ b/video/out/opengl/lcms.c
@@ -82,8 +82,9 @@ const struct m_sub_options mp_icc_conf = {
OPT_STRING("icc-cache-dir", cache_dir, 0),
OPT_INT("icc-intent", intent, 0),
OPT_INTRANGE("icc-contrast", contrast, 0, 0, 100000),
- OPT_STRING_VALIDATE("3dlut-size", size_str, 0, validate_3dlut_size_opt),
+ OPT_STRING_VALIDATE("icc-3dlut-size", size_str, 0, validate_3dlut_size_opt),
+ OPT_REPLACED("3dlut-size", "icc-3dlut-size"),
OPT_REMOVED("icc-cache", "see icc-cache-dir"),
{0}
},