]> git.sesse.net Git - movit/blob - test_util.cpp
Merge branch 'master' into epoxy
[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         glGenTextures(1, &texnum);
59         check_error();
60         glBindTexture(GL_TEXTURE_2D, texnum);
61         check_error();
62         glTexImage2D(GL_TEXTURE_2D, 0, framebuffer_format, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
63         check_error();
64
65         glGenFramebuffers(1, &fbo);
66         check_error();
67         glBindFramebuffer(GL_FRAMEBUFFER, fbo);
68         check_error();
69         glFramebufferTexture2D(
70                 GL_FRAMEBUFFER,
71                 GL_COLOR_ATTACHMENT0,
72                 GL_TEXTURE_2D,
73                 texnum,
74                 0);
75         check_error();
76         glBindFramebuffer(GL_FRAMEBUFFER, 0);
77         check_error();
78 }
79
80 EffectChainTester::~EffectChainTester()
81 {
82         glDeleteFramebuffers(1, &fbo);
83         check_error();
84         glDeleteTextures(1, &texnum);
85         check_error();
86 }
87
88 Input *EffectChainTester::add_input(const float *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve)
89 {
90         ImageFormat format;
91         format.color_space = color_space;
92         format.gamma_curve = gamma_curve;
93
94         FlatInput *input = new FlatInput(format, pixel_format, GL_FLOAT, width, height);
95         input->set_pixel_data(data);
96         chain.add_input(input);
97         return input;
98 }
99
100 Input *EffectChainTester::add_input(const unsigned char *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve)
101 {
102         ImageFormat format;
103         format.color_space = color_space;
104         format.gamma_curve = gamma_curve;
105
106         FlatInput *input = new FlatInput(format, pixel_format, GL_UNSIGNED_BYTE, width, height);
107         input->set_pixel_data(data);
108         chain.add_input(input);
109         return input;
110 }
111
112 void EffectChainTester::run(float *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format)
113 {
114         if (!finalized) {
115                 finalize_chain(color_space, gamma_curve, alpha_format);
116         }
117
118         chain.render_to_fbo(fbo, width, height);
119
120         glBindFramebuffer(GL_FRAMEBUFFER, fbo);
121         glReadPixels(0, 0, width, height, format, GL_FLOAT, out_data);
122
123         if (format == GL_RGBA) {
124                 width *= 4;
125         }
126
127         vertical_flip(out_data, width, height);
128 }
129
130 void EffectChainTester::run(unsigned char *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format)
131 {
132         if (!finalized) {
133                 finalize_chain(color_space, gamma_curve, alpha_format);
134         }
135
136         chain.render_to_fbo(fbo, width, height);
137
138         glBindFramebuffer(GL_FRAMEBUFFER, fbo);
139         glReadPixels(0, 0, width, height, format, GL_UNSIGNED_BYTE, out_data);
140
141         if (format == GL_RGBA) {
142                 width *= 4;
143         }
144
145         vertical_flip(out_data, width, height);
146 }
147
148 void EffectChainTester::finalize_chain(Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format)
149 {
150         assert(!finalized);
151         ImageFormat image_format;
152         image_format.color_space = color_space;
153         image_format.gamma_curve = gamma_curve;
154         chain.add_output(image_format, alpha_format);
155         chain.finalize();
156         finalized = true;
157 }
158
159 void expect_equal(const float *ref, const float *result, unsigned width, unsigned height, float largest_difference_limit, float rms_limit)
160 {
161         float largest_difference = -1.0f;
162         float squared_difference = 0.0f;
163         int largest_diff_x = -1, largest_diff_y = -1;
164
165         for (unsigned y = 0; y < height; ++y) {
166                 for (unsigned x = 0; x < width; ++x) {
167                         float diff = ref[y * width + x] - result[y * width + x];
168                         if (fabs(diff) > largest_difference) {
169                                 largest_difference = fabs(diff);
170                                 largest_diff_x = x;
171                                 largest_diff_y = y;
172                         }
173                         squared_difference += diff * diff;
174                 }
175         }
176
177         EXPECT_LT(largest_difference, largest_difference_limit)
178                 << "Largest difference is in x=" << largest_diff_x << ", y=" << largest_diff_y << ":\n"
179                 << "Reference: " << ref[largest_diff_y * width + largest_diff_x] << "\n"
180                 << "Result:    " << result[largest_diff_y * width + largest_diff_x];
181
182         float rms = sqrt(squared_difference) / (width * height);
183         EXPECT_LT(rms, rms_limit);
184
185         if (largest_difference >= largest_difference_limit || rms >= rms_limit) {
186                 fprintf(stderr, "Dumping matrices for easier debugging, since at least one test failed.\n");
187
188                 fprintf(stderr, "Reference:\n");
189                 for (unsigned y = 0; y < height; ++y) {
190                         for (unsigned x = 0; x < width; ++x) {
191                                 fprintf(stderr, "%7.4f ", ref[y * width + x]);
192                         }
193                         fprintf(stderr, "\n");
194                 }
195
196                 fprintf(stderr, "\nResult:\n");
197                 for (unsigned y = 0; y < height; ++y) {
198                         for (unsigned x = 0; x < width; ++x) {
199                                 fprintf(stderr, "%7.4f ", result[y * width + x]);
200                         }
201                         fprintf(stderr, "\n");
202                 }
203         }
204 }
205
206 void expect_equal(const unsigned char *ref, const unsigned char *result, unsigned width, unsigned height, unsigned largest_difference_limit, float rms_limit)
207 {
208         assert(width > 0);
209         assert(height > 0);
210
211         float *ref_float = new float[width * height];
212         float *result_float = new float[width * height];
213
214         for (unsigned y = 0; y < height; ++y) {
215                 for (unsigned x = 0; x < width; ++x) {
216                         ref_float[y * width + x] = ref[y * width + x];
217                         result_float[y * width + x] = result[y * width + x];
218                 }
219         }
220
221         expect_equal(ref_float, result_float, width, height, largest_difference_limit, rms_limit);
222
223         delete[] ref_float;
224         delete[] result_float;
225 }
226
227 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)
228 {
229         double squared_difference = 0.0;
230         for (unsigned i = 0; i < num_values; ++i) {
231                 double absolute_error = fabs(expected[i] - result[i]);
232                 squared_difference += absolute_error * absolute_error;
233                 EXPECT_LT(absolute_error, absolute_error_limit);
234
235                 if (expected[i] > 0.0) {
236                         double relative_error = fabs(absolute_error / expected[i]);
237
238                         EXPECT_LT(relative_error, relative_error_limit);
239                 }
240                 if (i < num_values - 1) {
241                         double delta = expected[i + 1] - expected[i];
242                         double local_relative_error = fabs(absolute_error / delta);
243                         EXPECT_LT(local_relative_error, local_relative_error_limit);
244                 }
245         }
246         double rms = sqrt(squared_difference) / num_values;
247         EXPECT_LT(rms, rms_limit);
248 }
249
250 }  // namespace movit