X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=test_util.h;h=992ca46bab9e68a736282ea715b8fb9a0cc2a29b;hp=90665916f4e3e2116e8027efe2c694aa10f0685b;hb=245513f7873fca03be3f031beddaca716d7536d9;hpb=b10c546f579c7ccb5939161e61a71cd18a3f9bbd diff --git a/test_util.h b/test_util.h index 9066591..992ca46 100644 --- a/test_util.h +++ b/test_util.h @@ -1,7 +1,11 @@ -#ifndef _TEST_UTIL_H -#define _TEST_UTIL_H 1 +#ifndef _MOVIT_TEST_UTIL_H +#define _MOVIT_TEST_UTIL_H 1 +#include #include "effect_chain.h" +#include "image_format.h" + +class Input; class EffectChainTester { public: @@ -15,8 +19,8 @@ public: EffectChain *get_chain() { return &chain; } 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, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_POSTMULTIPLIED); - void run(unsigned char *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_POSTMULTIPLIED); + void run(float *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED); + void run(unsigned char *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED); private: void finalize_chain(Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format); @@ -29,5 +33,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); +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); -#endif // !defined(_TEST_UTIL_H) +#endif // !defined(_MOVIT_TEST_UTIL_H)