]> git.sesse.net Git - movit/blob - test_util.h
ed0275e15942b23209736be54c113d3afa04c0bd
[movit] / test_util.h
1 #ifndef _TEST_UTIL_H
2 #define _TEST_UTIL_H 1
3
4 #include "effect_chain.h"
5
6 class EffectChainTester {
7 public:
8         EffectChainTester(const float *data, unsigned width, unsigned height, ColorSpace color_space, GammaCurve gamma_curve);
9         EffectChain *get_chain() { return &chain; }
10         void run(float *out_data, ColorSpace color_space, GammaCurve gamma_curve);
11
12 private:
13         EffectChain chain;
14         unsigned width, height;
15 };
16
17 void expect_equal(const float *ref, const float *result, unsigned width, unsigned height);
18
19 #endif  // !defined(_TEST_UTIL_H)