X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=test_util.h;h=b44d326d8d51a3c57390f7c8968efa541d9802bd;hb=12c11c0e615f7fc17ef7a600ff0c9099f7908dbc;hp=992ca46bab9e68a736282ea715b8fb9a0cc2a29b;hpb=245513f7873fca03be3f031beddaca716d7536d9;p=movit diff --git a/test_util.h b/test_util.h index 992ca46..b44d326 100644 --- a/test_util.h +++ b/test_util.h @@ -1,10 +1,12 @@ #ifndef _MOVIT_TEST_UTIL_H #define _MOVIT_TEST_UTIL_H 1 -#include +#include #include "effect_chain.h" #include "image_format.h" +namespace movit { + class Input; class EffectChainTester { @@ -35,4 +37,6 @@ void expect_equal(const float *ref, const float *result, unsigned width, unsigne 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); +} // namespace movit + #endif // !defined(_MOVIT_TEST_UTIL_H)