]> git.sesse.net Git - movit/blobdiff - test_util.h
Add a variant of expect_equal() for uint8s.
[movit] / test_util.h
index d149fe135d8b2e381e160a983469a2a991a194cb..67e975da50644d483d13a2f08a7bd5970fdb611a 100644 (file)
@@ -15,6 +15,7 @@ public:
        Input *add_input(const float *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve);
        Input *add_input(const unsigned char *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve);
        void run(float *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve);
+       void run(unsigned char *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve);
 
 private:
        void finalize_chain(Colorspace color_space, GammaCurve gamma_curve);
@@ -26,5 +27,6 @@ private:
 };
 
 void expect_equal(const float *ref, const float *result, unsigned width, unsigned height, float largest_difference_limit = 1.5 / 255.0, float rms_limit = 0.2 / 255.0);
+void expect_equal(const unsigned char *ref, const unsigned char *result, unsigned width, unsigned height, unsigned largest_difference_limit = 1, float rms_limit = 0.2);
 
 #endif  // !defined(_TEST_UTIL_H)