mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 12:55:16 +00:00
9db818279a
This reworks all of mpv's unit tests so they are compiled as separate executables (optional) and run via meson test. Because most of the tests are dependant on mpv's internals, existing compiled objects are leveraged to create static libs and used when necessary. As an aside, a function was moved into video/out/gpu/utils for sanity's sake (otherwise most of vo would have been needed). As a plus, meson multithreads running tests automatically and also the output no longer pollutes the source directory. There are tests that can break due to ffmpeg changes, so they require a specific minimum libavutil version to be built.
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
// Test scaling using libswscale.
|
|
// Note: libswscale is already tested in FFmpeg. This code serves mostly to test
|
|
// the functionality scale_test.h using the already tested libswscale as
|
|
// reference.
|
|
|
|
#include "scale_test.h"
|
|
#include "video/sws_utils.h"
|
|
|
|
static bool scale(void *pctx, struct mp_image *dst, struct mp_image *src)
|
|
{
|
|
struct mp_sws_context *ctx = pctx;
|
|
return mp_sws_scale(ctx, dst, src) >= 0;
|
|
}
|
|
|
|
static bool supports_fmts(void *pctx, int imgfmt_dst, int imgfmt_src)
|
|
{
|
|
struct mp_sws_context *ctx = pctx;
|
|
return mp_sws_supports_formats(ctx, imgfmt_dst, imgfmt_src);
|
|
}
|
|
|
|
static const struct scale_test_fns fns = {
|
|
.scale = scale,
|
|
.supports_fmts = supports_fmts,
|
|
};
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct mp_sws_context *sws = mp_sws_alloc(NULL);
|
|
|
|
struct scale_test *stest = talloc_zero(NULL, struct scale_test);
|
|
stest->fns = &fns;
|
|
stest->fns_priv = sws;
|
|
stest->test_name = "repack_sws";
|
|
stest->refdir = talloc_strdup(stest, argv[1]);
|
|
stest->outdir = talloc_strdup(stest, argv[2]);
|
|
|
|
repack_test_run(stest);
|
|
|
|
talloc_free(stest);
|
|
talloc_free(sws);
|
|
return 0;
|
|
}
|