summaryrefslogtreecommitdiffstats
path: root/test/gl_video.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: fix include after 6597998Ilya Tumaykin2017-10-171-1/+1
|
* tests: fix #includeIlya Tumaykin2015-12-221-1/+1
|
* test: update cmocka version to 1.0Stefano Pigozzi2015-06-131-6/+6
|
* vo_opengl: add gamma-auto optionStefano Pigozzi2015-03-041-0/+42
This automatically sets the gamma option depending on lighting conditions measured from the computer's ambient light sensor. sRGB – arguably the “sibling” to BT.709 for still images – has a reference viewing environment defined in its specification (IEC 61966-2-1:1999, see http://www.color.org/chardata/rgb/srgb.xalter). According to this data, the assumed ambient illuminance is 64 lux. This is the illuminance where the gamma that results from ICC color management is correct. On the other hand, BT.1886 formalizes that the gamma level for dim environments to be 2.40, and Apple resources (WWDC12: 2012 Session 523: Best practices for color management) define the BT.1886 dim at 16 lux. So the logic we apply is: * >= 64lux -> 1.961 gamma * =< 16lux -> 2.400 gamma * 16lux < x < 64lux -> logaritmic rescale of lux to gamma. The human perception of illuminance roughly follows a logaritmic scale of lux [1]. [1]: https://msdn.microsoft.com/en-us/library/windows/desktop/dd319008%28v=vs.85%29.aspx