]> git.sesse.net Git - movit/blob - test_util.cpp
Small refactoring in EffectChainTester.
[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), output_added(false), 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         internal_run(out_data, GL_FLOAT, format, color_space, gamma_curve, alpha_format);
139 }
140
141 void EffectChainTester::run(unsigned char *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format)
142 {
143         internal_run(out_data, GL_UNSIGNED_BYTE, format, color_space, gamma_curve, alpha_format);
144 }
145
146 template<class T>
147 void EffectChainTester::internal_run(T *out_data, GLenum internal_format, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format)
148 {
149         if (!finalized) {
150                 finalize_chain(color_space, gamma_curve, alpha_format);
151         }
152
153         chain.render_to_fbo(fbo, width, height);
154
155         glBindFramebuffer(GL_FRAMEBUFFER, fbo);
156         check_error();
157         if (!epoxy_is_desktop_gl() && (format == GL_RED || format == GL_BLUE || format == GL_ALPHA)) {
158                 // GLES will only read GL_RGBA.
159                 T *temp = new T[width * height * 4];
160                 glReadPixels(0, 0, width, height, GL_RGBA, internal_format, temp);
161                 check_error();
162                 if (format == GL_ALPHA) {
163                         for (unsigned i = 0; i < width * height; ++i) {
164                                 out_data[i] = temp[i * 4 + 3];
165                         }
166                 } else if (format == GL_BLUE) {
167                         for (unsigned i = 0; i < width * height; ++i) {
168                                 out_data[i] = temp[i * 4 + 2];
169                         }
170                 } else {
171                         for (unsigned i = 0; i < width * height; ++i) {
172                                 out_data[i] = temp[i * 4];
173                         }
174                 }
175                 delete[] temp;
176         } else {
177                 glReadPixels(0, 0, width, height, format, internal_format, out_data);
178                 check_error();
179         }
180
181         if (format == GL_RGBA) {
182                 width *= 4;
183         }
184
185         vertical_flip(out_data, width, height);
186 }
187
188 void EffectChainTester::add_output(const ImageFormat &format, OutputAlphaFormat alpha_format)
189 {
190         chain.add_output(format, alpha_format);
191         output_added = true;
192 }
193
194 void EffectChainTester::add_ycbcr_output(const ImageFormat &format, OutputAlphaFormat alpha_format, const YCbCrFormat &ycbcr_format)
195 {
196         chain.add_ycbcr_output(format, alpha_format, ycbcr_format);
197         output_added = true;
198 }
199
200 void EffectChainTester::finalize_chain(Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format)
201 {
202         assert(!finalized);
203         if (!output_added) {
204                 ImageFormat image_format;
205                 image_format.color_space = color_space;
206                 image_format.gamma_curve = gamma_curve;
207                 chain.add_output(image_format, alpha_format);
208                 output_added = true;
209         }
210         chain.finalize();
211         finalized = true;
212 }
213
214 void expect_equal(const float *ref, const float *result, unsigned width, unsigned height, float largest_difference_limit, float rms_limit)
215 {
216         float largest_difference = -1.0f;
217         float squared_difference = 0.0f;
218         int largest_diff_x = -1, largest_diff_y = -1;
219
220         for (unsigned y = 0; y < height; ++y) {
221                 for (unsigned x = 0; x < width; ++x) {
222                         float diff = ref[y * width + x] - result[y * width + x];
223                         if (fabs(diff) > largest_difference) {
224                                 largest_difference = fabs(diff);
225                                 largest_diff_x = x;
226                                 largest_diff_y = y;
227                         }
228                         squared_difference += diff * diff;
229                 }
230         }
231
232         EXPECT_LT(largest_difference, largest_difference_limit)
233                 << "Largest difference is in x=" << largest_diff_x << ", y=" << largest_diff_y << ":\n"
234                 << "Reference: " << ref[largest_diff_y * width + largest_diff_x] << "\n"
235                 << "Result:    " << result[largest_diff_y * width + largest_diff_x];
236
237         float rms = sqrt(squared_difference) / (width * height);
238         EXPECT_LT(rms, rms_limit);
239
240         if (largest_difference >= largest_difference_limit || rms >= rms_limit) {
241                 fprintf(stderr, "Dumping matrices for easier debugging, since at least one test failed.\n");
242
243                 fprintf(stderr, "Reference:\n");
244                 for (unsigned y = 0; y < height; ++y) {
245                         for (unsigned x = 0; x < width; ++x) {
246                                 fprintf(stderr, "%7.4f ", ref[y * width + x]);
247                         }
248                         fprintf(stderr, "\n");
249                 }
250
251                 fprintf(stderr, "\nResult:\n");
252                 for (unsigned y = 0; y < height; ++y) {
253                         for (unsigned x = 0; x < width; ++x) {
254                                 fprintf(stderr, "%7.4f ", result[y * width + x]);
255                         }
256                         fprintf(stderr, "\n");
257                 }
258         }
259 }
260
261 void expect_equal(const unsigned char *ref, const unsigned char *result, unsigned width, unsigned height, unsigned largest_difference_limit, float rms_limit)
262 {
263         assert(width > 0);
264         assert(height > 0);
265
266         float *ref_float = new float[width * height];
267         float *result_float = new float[width * height];
268
269         for (unsigned y = 0; y < height; ++y) {
270                 for (unsigned x = 0; x < width; ++x) {
271                         ref_float[y * width + x] = ref[y * width + x];
272                         result_float[y * width + x] = result[y * width + x];
273                 }
274         }
275
276         expect_equal(ref_float, result_float, width, height, largest_difference_limit, rms_limit);
277
278         delete[] ref_float;
279         delete[] result_float;
280 }
281
282 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)
283 {
284         double squared_difference = 0.0;
285         for (unsigned i = 0; i < num_values; ++i) {
286                 double absolute_error = fabs(expected[i] - result[i]);
287                 squared_difference += absolute_error * absolute_error;
288                 EXPECT_LT(absolute_error, absolute_error_limit);
289
290                 if (expected[i] > 0.0) {
291                         double relative_error = fabs(absolute_error / expected[i]);
292
293                         EXPECT_LT(relative_error, relative_error_limit);
294                 }
295                 if (i < num_values - 1) {
296                         double delta = expected[i + 1] - expected[i];
297                         double local_relative_error = fabs(absolute_error / delta);
298                         EXPECT_LT(local_relative_error, local_relative_error_limit);
299                 }
300         }
301         double rms = sqrt(squared_difference) / num_values;
302         EXPECT_LT(rms, rms_limit);
303 }
304
305 }  // namespace movit