Fix colour range in XYZ -> RGBA.
[libdcp.git] / src / colour_matrix.h
index 615e8b38d63ef278ab99b8b55c836d18631ab8b1..d4f6459105a6abe693b48f8fa7c96affbe07f417 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 */
 
-namespace libdcp {
+namespace dcp {
 
 namespace colour_matrix {
 
 extern double const xyz_to_rgb[3][3];
-extern double const srgb_to_xyz[3][3];
-extern double const rec709_to_xyz[3][3];
+extern double const rgb_to_xyz[3][3];
 
-}      
+}
 
 }