From: Steinar H. Gunderson Date: Sun, 14 Oct 2012 10:31:40 +0000 (+0200) Subject: Add a reference for where the D65 white point comes from. X-Git-Tag: 1.0~251 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=ece88bd25d49a3c16c79f39063ccd574fbef060f;hp=696fae62e66f803a759afc004c3657ee84420bfe Add a reference for where the D65 white point comes from. --- diff --git a/colorspace_conversion_effect.cpp b/colorspace_conversion_effect.cpp index 89123d3..1ac5465 100644 --- a/colorspace_conversion_effect.cpp +++ b/colorspace_conversion_effect.cpp @@ -13,6 +13,7 @@ double rec601_525_y_R = 0.340, rec601_525_y_G = 0.595, rec601_525_y_B = 0.070; double rec601_625_x_R = 0.640, rec601_625_x_G = 0.290, rec601_625_x_B = 0.150; double rec601_625_y_R = 0.330, rec601_625_y_G = 0.600, rec601_625_y_B = 0.060; +// The D65 white point. Given in both Rec. 601 and 709. double d65_x = 0.3127, d65_y = 0.3290; ColorSpaceConversionEffect::ColorSpaceConversionEffect()