]> git.sesse.net Git - movit/blob - test_util.cpp
c8759744b9853229e24e1faf7a0f0f8321157758
[movit] / test_util.cpp
1 #include <assert.h>
2 #include <math.h>
3 #include <stdio.h>
4 #include <algorithm>
5 #include <epoxy/gl.h>
6 #include <gtest/gtest.h>
7 #include <gtest/gtest-message.h>
8
9 #include "flat_input.h"
10 #include "init.h"
11 #include "resource_pool.h"
12 #include "test_util.h"
13 #include "util.h"
14
15 using namespace std;
16
17 namespace movit {
18
19 class Input;
20
21 namespace {
22
23 // Not thread-safe, but this isn't a big problem for testing.
24 ResourcePool *get_static_pool()
25 {
26         static ResourcePool *resource_pool = NULL;
27         if (!resource_pool) {
28                 resource_pool = new ResourcePool();
29         }
30         return resource_pool;
31 }
32
33 // Flip upside-down to compensate for different origin.
34 template<class T>
35 void vertical_flip(T *data, unsigned width, unsigned height)
36 {
37         for (unsigned y = 0; y < height / 2; ++y) {
38                 unsigned flip_y = height - y - 1;
39                 for (unsigned x = 0; x < width; ++x) {
40                         swap(data[y * width + x], data[flip_y * width + x]);
41                 }
42         }
43 }
44
45 }  // namespace
46
47 EffectChainTester::EffectChainTester(const float *data, unsigned width, unsigned height,
48                                      MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve,
49                                      GLenum framebuffer_format)
50         : chain(width, height, get_static_pool()), width(width), height(height), finalized(false)
51 {
52         CHECK(init_movit(".", MOVIT_DEBUG_OFF));
53
54         if (data != NULL) {
55                 add_input(data, pixel_format, color_space, gamma_curve);
56         }
57
58         GLuint type;
59         if (framebuffer_format == GL_RGBA8) {
60                 type = GL_UNSIGNED_BYTE;
61         } else if (framebuffer_format == GL_RGBA16F || framebuffer_format == GL_RGBA32F) {
62                 type = GL_FLOAT;
63         } else {
64                 // Add more here as needed.
65                 assert(false);
66         }
67
68         glGenTextures(1, &texnum);
69         check_error();
70         glBindTexture(GL_TEXTURE_2D, texnum);
71         check_error();
72         glTexImage2D(GL_TEXTURE_2D, 0, framebuffer_format, width, height, 0, GL_RGBA, type, NULL);
73         check_error();
74
75         glGenFramebuffers(1, &fbo);
76         check_error();
77         glBindFramebuffer(GL_FRAMEBUFFER, fbo);
78         check_error();
79         glFramebufferTexture2D(
80                 GL_FRAMEBUFFER,
81                 GL_COLOR_ATTACHMENT0,
82                 GL_TEXTURE_2D,
83                 texnum,
84                 0);
85         check_error();
86         glBindFramebuffer(GL_FRAMEBUFFER, 0);
87         check_error();
88 }
89
90 EffectChainTester::~EffectChainTester()
91 {
92         glDeleteFramebuffers(1, &fbo);
93         check_error();
94         glDeleteTextures(1, &texnum);
95         check_error();
96 }
97
98 Input *EffectChainTester::add_input(const float *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve, int input_width, int input_height)
99 {
100         ImageFormat format;
101         format.color_space = color_space;
102         format.gamma_curve = gamma_curve;
103
104         if (input_width == -1) {
105                 input_width = width;
106         }
107         if (input_height == -1) {
108                 input_height = height;
109         }
110
111         FlatInput *input = new FlatInput(format, pixel_format, GL_FLOAT, input_width, input_height);
112         input->set_pixel_data(data);
113         chain.add_input(input);
114         return input;
115 }
116
117 Input *EffectChainTester::add_input(const unsigned char *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve, int input_width, int input_height)
118 {
119         ImageFormat format;
120         format.color_space = color_space;
121         format.gamma_curve = gamma_curve;
122
123         if (input_width == -1) {
124                 input_width = width;
125         }
126         if (input_height == -1) {
127                 input_height = height;
128         }
129
130         FlatInput *input = new FlatInput(format, pixel_format, GL_UNSIGNED_BYTE, input_width, input_height);
131         input->set_pixel_data(data);
132         chain.add_input(input);
133         return input;
134 }
135
136 void EffectChainTester::run(float *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format)
137 {
138         if (!finalized) {
139                 finalize_chain(color_space, gamma_curve, alpha_format);
140         }
141
142         chain.render_to_fbo(fbo, width, height);
143
144         glBindFramebuffer(GL_FRAMEBUFFER, fbo);
145         check_error();
146         if (!epoxy_is_desktop_gl() && format == GL_RED) {
147                 // GLES will only read GL_RGBA.
148                 float *temp = new float[width * height * 4];
149                 glReadPixels(0, 0, width, height, GL_RGBA, GL_FLOAT, temp);
150                 check_error();
151                 for (int i = 0; i < width * height; ++i) {
152                         out_data[i] = temp[i * 4];
153                 }
154                 delete[] temp;
155         } else {
156                 glReadPixels(0, 0, width, height, format, GL_FLOAT, out_data);
157                 check_error();
158         }
159
160         if (format == GL_RGBA) {
161                 width *= 4;
162         }
163
164         vertical_flip(out_data, width, height);
165 }
166
167 void EffectChainTester::run(unsigned char *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format)
168 {
169         if (!finalized) {
170                 finalize_chain(color_space, gamma_curve, alpha_format);
171         }
172
173         chain.render_to_fbo(fbo, width, height);
174
175         glBindFramebuffer(GL_FRAMEBUFFER, fbo);
176         check_error();
177         if (!epoxy_is_desktop_gl() && format == GL_RED) {
178                 // GLES will only read GL_RGBA.
179                 unsigned char *temp = new unsigned char[width * height * 4];
180                 glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, temp);
181                 check_error();
182                 for (int i = 0; i < width * height; ++i) {
183                         out_data[i] = temp[i * 4];
184                 }
185                 delete[] temp;
186         } else {
187                 glReadPixels(0, 0, width, height, format, GL_UNSIGNED_BYTE, out_data);
188                 check_error();
189         }
190
191         if (format == GL_RGBA) {
192                 width *= 4;
193         }
194
195         vertical_flip(out_data, width, height);
196 }
197
198 void EffectChainTester::finalize_chain(Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format)
199 {
200         assert(!finalized);
201         ImageFormat image_format;
202         image_format.color_space = color_space;
203         image_format.gamma_curve = gamma_curve;
204         chain.add_output(image_format, alpha_format);
205         chain.finalize();
206         finalized = true;
207 }
208
209 void expect_equal(const float *ref, const float *result, unsigned width, unsigned height, float largest_difference_limit, float rms_limit)
210 {
211         float largest_difference = -1.0f;
212         float squared_difference = 0.0f;
213         int largest_diff_x = -1, largest_diff_y = -1;
214
215         for (unsigned y = 0; y < height; ++y) {
216                 for (unsigned x = 0; x < width; ++x) {
217                         float diff = ref[y * width + x] - result[y * width + x];
218                         if (fabs(diff) > largest_difference) {
219                                 largest_difference = fabs(diff);
220                                 largest_diff_x = x;
221                                 largest_diff_y = y;
222                         }
223                         squared_difference += diff * diff;
224                 }
225         }
226
227         EXPECT_LT(largest_difference, largest_difference_limit)
228                 << "Largest difference is in x=" << largest_diff_x << ", y=" << largest_diff_y << ":\n"
229                 << "Reference: " << ref[largest_diff_y * width + largest_diff_x] << "\n"
230                 << "Result:    " << result[largest_diff_y * width + largest_diff_x];
231
232         float rms = sqrt(squared_difference) / (width * height);
233         EXPECT_LT(rms, rms_limit);
234
235         if (largest_difference >= largest_difference_limit || rms >= rms_limit) {
236                 fprintf(stderr, "Dumping matrices for easier debugging, since at least one test failed.\n");
237
238                 fprintf(stderr, "Reference:\n");
239                 for (unsigned y = 0; y < height; ++y) {
240                         for (unsigned x = 0; x < width; ++x) {
241                                 fprintf(stderr, "%7.4f ", ref[y * width + x]);
242                         }
243                         fprintf(stderr, "\n");
244                 }
245
246                 fprintf(stderr, "\nResult:\n");
247                 for (unsigned y = 0; y < height; ++y) {
248                         for (unsigned x = 0; x < width; ++x) {
249                                 fprintf(stderr, "%7.4f ", result[y * width + x]);
250                         }
251                         fprintf(stderr, "\n");
252                 }
253         }
254 }
255
256 void expect_equal(const unsigned char *ref, const unsigned char *result, unsigned width, unsigned height, unsigned largest_difference_limit, float rms_limit)
257 {
258         assert(width > 0);
259         assert(height > 0);
260
261         float *ref_float = new float[width * height];
262         float *result_float = new float[width * height];
263
264         for (unsigned y = 0; y < height; ++y) {
265                 for (unsigned x = 0; x < width; ++x) {
266                         ref_float[y * width + x] = ref[y * width + x];
267                         result_float[y * width + x] = result[y * width + x];
268                 }
269         }
270
271         expect_equal(ref_float, result_float, width, height, largest_difference_limit, rms_limit);
272
273         delete[] ref_float;
274         delete[] result_float;
275 }
276
277 void test_accuracy(const float *expected, const float *result, unsigned num_values, double absolute_error_limit, double relative_error_limit, double local_relative_error_limit, double rms_limit)
278 {
279         double squared_difference = 0.0;
280         for (unsigned i = 0; i < num_values; ++i) {
281                 double absolute_error = fabs(expected[i] - result[i]);
282                 squared_difference += absolute_error * absolute_error;
283                 EXPECT_LT(absolute_error, absolute_error_limit);
284
285                 if (expected[i] > 0.0) {
286                         double relative_error = fabs(absolute_error / expected[i]);
287
288                         EXPECT_LT(relative_error, relative_error_limit);
289                 }
290                 if (i < num_values - 1) {
291                         double delta = expected[i + 1] - expected[i];
292                         double local_relative_error = fabs(absolute_error / delta);
293                         EXPECT_LT(local_relative_error, local_relative_error_limit);
294                 }
295         }
296         double rms = sqrt(squared_difference) / num_values;
297         EXPECT_LT(rms, rms_limit);
298 }
299
300 }  // namespace movit