summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorNiklas Haas <git@nand.wakku.to>2014-02-26 22:58:48 +0100
committerNiklas Haas <git@nand.wakku.to>2014-02-26 23:05:20 +0100
commit6119cf13bed2689d025c15e6b7d874e44b39ef08 (patch)
tree09ce1a68033dd4822ae2f8380cf30edd84d2cf77 /video
parentc1cb0dd7eeb1c77bbc4c2270de54759b367ad741 (diff)
downloadmpv-6119cf13bed2689d025c15e6b7d874e44b39ef08.tar.bz2
mpv-6119cf13bed2689d025c15e6b7d874e44b39ef08.tar.xz
vo_opengl: Change the default icc-intent to relative colorimetric
This used to be absolute colorimetric, but relative colorimetric is a saner default due to the arguments presented in issue #595. A short summary: In general it doesn't affect much because our eyes adapt to the white point either way, but if running in windowed mode it would make the whites seem inconsistent/tinted. For fullscreen projection it's also undesirable since it reduces the dynamic range without much benefit (again, since our eyes adapt either way) and it also breaks calibration against ambient lighting. This shouldn't change much, since most profile types that aren't 3DLUTs aren't capable of either of those transforms, and most displays are calibrated against D65 (same as BT.709 source) either way.
Diffstat (limited to 'video')
-rw-r--r--video/out/gl_lcms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gl_lcms.c b/video/out/gl_lcms.c
index 6fd86d9874..3d568ea280 100644
--- a/video/out/gl_lcms.c
+++ b/video/out/gl_lcms.c
@@ -80,7 +80,7 @@ const struct m_sub_options mp_icc_conf = {
.size = sizeof(struct mp_icc_opts),
.defaults = &(const struct mp_icc_opts) {
.size_str = "128x256x64",
- .intent = INTENT_ABSOLUTE_COLORIMETRIC,
+ .intent = INTENT_RELATIVE_COLORIMETRIC,
},
};