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:
authorHenrik Gramner <gramner@twoorioles.com>2022-01-07 21:06:17 +0300
committerHenrik Gramner <gramner@twoorioles.com>2022-01-10 01:18:59 +0300
commitace8efe60afb659cb6c3bf8b0e0c54c381c958da (patch)
tree0d73c3b2efa1861d89ae4555e897acd878b2b3c8 /tests
parentc8f80104bd51062172c30909817fc59e261e406a (diff)
x86: Improve AVX2 generate_grain asm
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/filmgrain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/filmgrain.c b/tests/checkasm/filmgrain.c
index 385caea..a44a3ac 100644
--- a/tests/checkasm/filmgrain.c
+++ b/tests/checkasm/filmgrain.c
@@ -47,8 +47,8 @@ static const char ss_name[][4] = {
};
static void check_gen_grny(const Dav1dFilmGrainDSPContext *const dsp) {
- entry grain_lut_c[GRAIN_HEIGHT][GRAIN_WIDTH];
- entry grain_lut_a[GRAIN_HEIGHT + 1][GRAIN_WIDTH];
+ ALIGN_STK_16(entry, grain_lut_c, GRAIN_HEIGHT,[GRAIN_WIDTH]);
+ ALIGN_STK_16(entry, grain_lut_a, GRAIN_HEIGHT + 1,[GRAIN_WIDTH]);
declare_func(void, entry grain_lut[][GRAIN_WIDTH],
const Dav1dFilmGrainData *data HIGHBD_DECL_SUFFIX);