2 #include "flat_input.h"
3 #include "gtest/gtest.h"
10 EffectChainTester::EffectChainTester(const float *data, unsigned width, unsigned height, MovitPixelFormat pixel_format, ColorSpace color_space, GammaCurve gamma_curve)
11 : chain(width, height), width(width), height(height)
13 add_input(data, pixel_format, color_space, gamma_curve);
15 glGenTextures(1, &texnum);
17 glBindTexture(GL_TEXTURE_2D, texnum);
19 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16F_ARB, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
22 glGenFramebuffers(1, &fbo);
24 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
26 glFramebufferTexture2D(
33 glBindFramebuffer(GL_FRAMEBUFFER, 0);
37 Input *EffectChainTester::add_input(const float *data, MovitPixelFormat pixel_format, ColorSpace color_space, GammaCurve gamma_curve)
40 format.color_space = color_space;
41 format.gamma_curve = gamma_curve;
43 FlatInput *input = new FlatInput(format, pixel_format, GL_FLOAT, width, height);
44 input->set_pixel_data(data);
45 chain.add_input(input);
49 void EffectChainTester::run(float *out_data, GLenum format, ColorSpace color_space, GammaCurve gamma_curve)
51 ImageFormat image_format;
52 image_format.color_space = color_space;
53 image_format.gamma_curve = gamma_curve;
54 chain.add_output(image_format);
57 chain.render_to_fbo(fbo, width, height);
59 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
60 glReadPixels(0, 0, width, height, format, GL_FLOAT, out_data);
62 // Flip upside-down to compensate for different origin.
63 for (unsigned y = 0; y < height / 2; ++y) {
64 unsigned flip_y = height - y - 1;
65 for (unsigned x = 0; x < width; ++x) {
66 std::swap(out_data[y * width + x], out_data[flip_y * width + x]);
71 void expect_equal(const float *ref, const float *result, unsigned width, unsigned height, float largest_difference_limit, float rms_limit)
73 float largest_difference = -1.0f;
74 float squared_difference = 0.0f;
75 int largest_diff_x = -1, largest_diff_y = -1;
77 for (unsigned y = 0; y < height; ++y) {
78 for (unsigned x = 0; x < width; ++x) {
79 float diff = ref[y * width + x] - result[y * width + x];
80 if (fabs(diff) > largest_difference) {
81 largest_difference = fabs(diff);
85 squared_difference += diff * diff;
89 EXPECT_LT(largest_difference, largest_difference_limit)
90 << "Largest difference is in x=" << largest_diff_x << ", y=" << largest_diff_y << ":\n"
91 << "Reference: " << ref[largest_diff_y * width + largest_diff_x] << "\n"
92 << "Result: " << result[largest_diff_y * width + largest_diff_x];
94 float rms = sqrt(squared_difference) / (width * height);
95 EXPECT_LT(rms, rms_limit);
97 if (largest_difference >= largest_difference_limit || rms >= rms_limit) {
98 fprintf(stderr, "Dumping matrices for easier debugging, since at least one test failed.\n");
100 fprintf(stderr, "Reference:\n");
101 for (unsigned y = 0; y < height; ++y) {
102 for (unsigned x = 0; x < width; ++x) {
103 fprintf(stderr, "%7.4f ", ref[y * width + x]);
105 fprintf(stderr, "\n");
108 fprintf(stderr, "\nResult:\n");
109 for (unsigned y = 0; y < height; ++y) {
110 for (unsigned x = 0; x < width; ++x) {
111 fprintf(stderr, "%7.4f ", result[y * width + x]);
113 fprintf(stderr, "\n");