Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/checkasm/mc.c')
-rw-r--r--tests/checkasm/mc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/checkasm/mc.c b/tests/checkasm/mc.c
index c8f2dc5..6b3b146 100644
--- a/tests/checkasm/mc.c
+++ b/tests/checkasm/mc.c
@@ -477,7 +477,7 @@ static void check_blend(Dav1dMCDSPContext *const c) {
checkasm_check_pixel_padded(c_dst, c_dst_stride, a_dst, a_dst_stride,
w, h, "dst");
- bench_new(a_dst, a_dst_stride, tmp, w, h, mask);
+ bench_new(alternate(c_dst, a_dst), a_dst_stride, tmp, w, h, mask);
}
}
report("blend");
@@ -516,7 +516,7 @@ static void check_blend_v(Dav1dMCDSPContext *const c) {
checkasm_check_pixel_padded(c_dst, c_dst_stride, a_dst, a_dst_stride,
w, h, "dst");
- bench_new(a_dst, a_dst_stride, tmp, w, h);
+ bench_new(alternate(c_dst, a_dst), a_dst_stride, tmp, w, h);
}
}
report("blend_v");
@@ -554,7 +554,7 @@ static void check_blend_h(Dav1dMCDSPContext *const c) {
checkasm_check_pixel_padded(c_dst, c_dst_stride, a_dst, a_dst_stride,
w, h, "dst");
- bench_new(a_dst, a_dst_stride, tmp, w, h);
+ bench_new(alternate(c_dst, a_dst), a_dst_stride, tmp, w, h);
}
}
report("blend_h");