summaryrefslogtreecommitdiffstats
path: root/test/scale_zimg.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/scale_zimg.c')
-rw-r--r--test/scale_zimg.c30
1 files changed, 23 insertions, 7 deletions
diff --git a/test/scale_zimg.c b/test/scale_zimg.c
index d5a352a8eb..57894bea67 100644
--- a/test/scale_zimg.c
+++ b/test/scale_zimg.c
@@ -1,4 +1,7 @@
+#include <libswscale/swscale.h>
+
#include "scale_test.h"
+#include "video/fmt-conversion.h"
#include "video/zimg.h"
static bool scale(void *pctx, struct mp_image *dst, struct mp_image *src)
@@ -18,23 +21,36 @@ static const struct scale_test_fns fns = {
.supports_fmts = supports_fmts,
};
-static void run(struct test_ctx *ctx)
+int main(int argc, char *argv[])
{
struct mp_zimg_context *zimg = mp_zimg_alloc();
+ zimg->opts.threads = 1;
struct scale_test *stest = talloc_zero(NULL, struct scale_test);
stest->fns = &fns;
stest->fns_priv = zimg;
stest->test_name = "repack_zimg";
- stest->ctx = ctx;
+ stest->refdir = talloc_strdup(stest, argv[1]);
+ stest->outdir = talloc_strdup(stest, argv[2]);
repack_test_run(stest);
+ FILE *f = test_open_out(stest->outdir, "zimg_formats.txt");
+ for (int n = 0; n < num_imgfmts; n++) {
+ int imgfmt = imgfmts[n];
+ fprintf(f, "%15s%7s%7s%7s%8s |\n", mp_imgfmt_to_name(imgfmt),
+ mp_zimg_supports_in_format(imgfmt) ? " Zin" : "",
+ mp_zimg_supports_out_format(imgfmt) ? " Zout" : "",
+ sws_isSupportedInput(imgfmt2pixfmt(imgfmt)) ? " SWSin" : "",
+ sws_isSupportedOutput(imgfmt2pixfmt(imgfmt)) ? " SWSout" : "");
+
+ }
+ fclose(f);
+
+ assert_text_files_equal(stest->refdir, stest->outdir, "zimg_formats.txt",
+ "This can fail if FFmpeg/libswscale adds or removes pixfmts.");
+
talloc_free(stest);
talloc_free(zimg);
+ return 0;
}
-
-const struct unittest test_repack_zimg = {
- .name = "repack_zimg",
- .run = run,
-};