summaryrefslogtreecommitdiffstats
path: root/test/scale_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/scale_test.h')
-rw-r--r--test/scale_test.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/scale_test.h b/test/scale_test.h
new file mode 100644
index 0000000000..f49b456ecb
--- /dev/null
+++ b/test/scale_test.h
@@ -0,0 +1,28 @@
+#pragma once
+
+#include "tests.h"
+#include "video/mp_image.h"
+
+struct scale_test_fns {
+ bool (*scale)(void *ctx, struct mp_image *dst, struct mp_image *src);
+ bool (*supports_fmts)(void *ctx, int imgfmt_dst, int imgfmt_src);
+};
+
+struct scale_test {
+ // To be filled in by user.
+ const struct scale_test_fns *fns;
+ void *fns_priv;
+ const char *test_name;
+ struct test_ctx *ctx;
+
+ // Private.
+ struct mp_image *img_repack_rgb8;
+ struct mp_image *img_repack_rgba8;
+ struct mp_image *img_repack_rgb16;
+ struct mp_image *img_repack_rgba16;
+ struct mp_sws_context *sws;
+ int fail;
+};
+
+// Test color repacking between packed formats (typically RGB).
+void repack_test_run(struct scale_test *stest);