]> git.sesse.net Git - movit/blob - colorspace_conversion_effect.cpp
Line-wrap the Makefile a bit.
[movit] / colorspace_conversion_effect.cpp
1 #include <assert.h>
2
3 #include "colorspace_conversion_effect.h"
4 #include "util.h"
5
6 // Color coordinates from Rec. 709; sRGB uses the same primaries.
7 double rec709_x_R = 0.640,  rec709_x_G = 0.300,  rec709_x_B = 0.150;
8 double rec709_y_R = 0.330,  rec709_y_G = 0.600,  rec709_y_B = 0.060;
9 double rec709_Y_R = 0.2126, rec709_Y_G = 0.7152, rec709_Y_B = 0.0722;
10
11 // Color coordinates from Rec. 601. (Separate for 525- and 625-line systems.)
12 double rec601_525_x_R = 0.630, rec601_525_x_G = 0.310, rec601_525_x_B = 0.155;
13 double rec601_525_y_R = 0.340, rec601_525_y_G = 0.595, rec601_525_y_B = 0.070;
14 double rec601_625_x_R = 0.640, rec601_625_x_G = 0.290, rec601_625_x_B = 0.150;
15 double rec601_625_y_R = 0.330, rec601_625_y_G = 0.600, rec601_625_y_B = 0.060;
16 double rec601_Y_R = 0.299, rec601_Y_G = 0.587, rec601_Y_B = 0.114;
17
18 ColorSpaceConversionEffect::ColorSpaceConversionEffect()
19         : source_space(COLORSPACE_sRGB),
20           destination_space(COLORSPACE_sRGB)
21 {
22         register_int("source_space", (int *)&source_space);
23         register_int("destination_space", (int *)&destination_space);
24 }
25
26 void get_xyz_matrix(ColorSpace space, Matrix3x3 m)
27 {
28         double x_R, x_G, x_B;
29         double y_R, y_G, y_B;
30         double Y_R, Y_G, Y_B;
31
32         switch (space) {
33         case COLORSPACE_REC_709:  // And sRGB.
34                 x_R = rec709_x_R; x_G = rec709_x_G; x_B = rec709_x_B;
35                 y_R = rec709_y_R; y_G = rec709_y_G; y_B = rec709_y_B;
36                 Y_R = rec709_Y_R; Y_G = rec709_Y_G; Y_B = rec709_Y_B;
37                 break;
38         case COLORSPACE_REC_601_525:
39                 x_R = rec601_525_x_R; x_G = rec601_525_x_G; x_B = rec601_525_x_B;
40                 y_R = rec601_525_y_R; y_G = rec601_525_y_G; y_B = rec601_525_y_B;
41                 Y_R = rec601_Y_R;     Y_G = rec601_Y_G;     Y_B = rec601_Y_B;
42                 break;
43         case COLORSPACE_REC_601_625:
44                 x_R = rec601_625_x_R; x_G = rec601_625_x_G; x_B = rec601_625_x_B;
45                 y_R = rec601_625_y_R; y_G = rec601_625_y_G; y_B = rec601_625_y_B;
46                 Y_R = rec601_Y_R;     Y_G = rec601_Y_G;     Y_B = rec601_Y_B;
47                 break;
48         default:
49                 assert(false);
50         }
51
52         // Convert xyY -> XYZ.
53         double X_R, X_G, X_B;
54         X_R = Y_R * x_R / y_R;
55         X_G = Y_G * x_G / y_G;
56         X_B = Y_B * x_B / y_B;
57         
58         double Z_R, Z_G, Z_B;
59         Z_R = Y_R * (1.0f - x_R - y_R) / y_R;
60         Z_G = Y_G * (1.0f - x_G - y_G) / y_G;
61         Z_B = Y_B * (1.0f - x_B - y_B) / y_B;
62
63         m[0] = X_R; m[3] = X_G; m[6] = X_B;
64         m[1] = Y_R; m[4] = Y_G; m[7] = Y_B;
65         m[2] = Z_R; m[5] = Z_G; m[8] = Z_B;
66 }
67
68 std::string ColorSpaceConversionEffect::output_fragment_shader()
69 {
70         // Create a matrix to convert from source space -> XYZ,
71         // another matrix to convert from XYZ -> destination space,
72         // and then concatenate the two.
73         //
74         // Since we right-multiply the RGB column vector, the matrix
75         // concatenation order needs to be the opposite of the operation order.
76         Matrix3x3 m;
77
78         Matrix3x3 source_space_to_xyz;
79         Matrix3x3 destination_space_to_xyz;
80         Matrix3x3 xyz_to_destination_space;
81
82         get_xyz_matrix(source_space, source_space_to_xyz);
83         get_xyz_matrix(destination_space, destination_space_to_xyz);
84         invert_3x3_matrix(destination_space_to_xyz, xyz_to_destination_space);
85         
86         multiply_3x3_matrices(xyz_to_destination_space, source_space_to_xyz, m);
87
88         char buf[1024];
89         sprintf(buf,
90                 "const mat3 PREFIX(conversion_matrix) = mat3(\n"
91                 "    %.8f, %.8f, %.8f,\n"
92                 "    %.8f, %.8f, %.8f,\n"
93                 "    %.8f, %.8f, %.8f);\n\n",
94                 m[0], m[3], m[6],
95                 m[1], m[4], m[7],
96                 m[2], m[5], m[8]);
97         return buf + read_file("colorspace_conversion_effect.frag");
98 }