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/looprestoration.c')
-rw-r--r--tests/checkasm/looprestoration.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/checkasm/looprestoration.c b/tests/checkasm/looprestoration.c
index 4bab5cd..5597870 100644
--- a/tests/checkasm/looprestoration.c
+++ b/tests/checkasm/looprestoration.c
@@ -54,9 +54,9 @@ static void init_tmp(pixel *buf, const ptrdiff_t stride,
}
static void check_wiener(Dav1dLoopRestorationDSPContext *const c, const int bpc) {
- ALIGN_STK_64(pixel, c_src, 448 * 64,), *const c_dst = c_src + 32;
- ALIGN_STK_64(pixel, a_src, 448 * 64,), *const a_dst = a_src + 32;
- ALIGN_STK_64(pixel, edge_buf, 448 * 8,), *const h_edge = edge_buf + 32;
+ ALIGN_STK_64(pixel, c_src, 448 * 64 + 64,), *const c_dst = c_src + 64;
+ ALIGN_STK_64(pixel, a_src, 448 * 64 + 64,), *const a_dst = a_src + 64;
+ ALIGN_STK_64(pixel, edge_buf, 448 * 8 + 64,), *const h_edge = edge_buf + 64;
pixel left[64][4];
LooprestorationParams params;
int16_t (*const filter)[8] = params.filter;