From: Steinar H. Gunderson Date: Thu, 2 Dec 2021 12:15:11 +0000 (+0100) Subject: Use exact sRGB matrix values. X-Git-Tag: 1.7.0~6 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0b1705581552217b0e387bd687d65e4e3410ab91;hp=0b1705581552217b0e387bd687d65e4e3410ab91;p=movit Use exact sRGB matrix values. https://photosauce.net/blog/post/what-makes-srgb-a-special-color-space alerted me to that sRGB does not use the exact same matrix as Rec. 709; it demands specific, rounded-off values. The difference should be minute, but now we are at least exact in the forward direction. Note that this isn't an ABI break per se, even though the definition of the COLORSPACE_sRGB enum changes; old software will simply still continue to treat it as Rec. 709, while newly-compiled software will get the corrected version. ---