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
path: root/tests
diff options
context:
space:
mode:
authorVictorien Le Couviour--Tuffet <victorien@videolan.org>2022-05-25 20:10:00 +0300
committerVictorien Le Couviour--Tuffet <victorien@videolan.org>2022-05-25 20:10:00 +0300
commitebeaac6d60df0fdc8772f84d43a310eeed877185 (patch)
tree61beefbc00a89a2f726c3bba73697376245028ea /tests
parentf920738fc1c2e0e959d3bdd2765c320a9e26143d (diff)
Fix typo
Insert missing space.
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/mc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/mc.c b/tests/checkasm/mc.c
index 6b3b146..047ef7b 100644
--- a/tests/checkasm/mc.c
+++ b/tests/checkasm/mc.c
@@ -343,7 +343,7 @@ static void check_w_avg(Dav1dMCDSPContext *const c) {
call_ref(c_dst, c_dst_stride, tmp[0], tmp[1], w, h, weight HIGHBD_TAIL_SUFFIX);
call_new(a_dst, a_dst_stride, tmp[0], tmp[1], w, h, weight HIGHBD_TAIL_SUFFIX);
- checkasm_check_pixel_padded(c_dst, c_dst_stride,a_dst, a_dst_stride,
+ 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[0], tmp[1], w, h, weight HIGHBD_TAIL_SUFFIX);