summaryrefslogtreecommitdiff
path: root/tests/checkasm/pixblockdsp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-06-27 22:03:14 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-07-02 22:21:53 +0200
commitfb6b6b5166cb8345caa4e7423dd7d9b97b430501 (patch)
treefd486fefc4cfe6e358158c5e836101ef14b27497 /tests/checkasm/pixblockdsp.c
parent07f5e75a47bfa20204bc75d6090aae74046f2dde (diff)
tests/checkasm/pixblockdsp: Test 8 byte aligned positions
The code is documented as to require 8byte alignment Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/checkasm/pixblockdsp.c')
-rw-r--r--tests/checkasm/pixblockdsp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/checkasm/pixblockdsp.c b/tests/checkasm/pixblockdsp.c
index 66bfdb7db8..2b88e7d1ac 100644
--- a/tests/checkasm/pixblockdsp.c
+++ b/tests/checkasm/pixblockdsp.c
@@ -26,7 +26,7 @@
#include "libavutil/intreadwrite.h"
#define BUF_UNITS 8
-#define BUF_SIZE (BUF_UNITS * 128 + BUF_UNITS)
+#define BUF_SIZE (BUF_UNITS * 128 + 8 * BUF_UNITS)
#define randomize_buffers() \
do { \
@@ -50,7 +50,7 @@
declare_func_emms(AV_CPU_FLAG_MMX, void, int16_t *block, const uint8_t *pixels, ptrdiff_t line_size); \
\
for (i = 0; i < BUF_UNITS; i++) { \
- int src_offset = i * 64 * sizeof(type) + i; /* Test various alignments */ \
+ int src_offset = i * 64 * sizeof(type) + 8 * i; /* Test various alignments */ \
int dst_offset = i * 64; /* dst must be aligned */ \
randomize_buffers(); \
call_ref(dst0 + dst_offset, src10 + src_offset, 8); \
@@ -67,7 +67,7 @@
declare_func_emms(AV_CPU_FLAG_MMX, void, int16_t *av_restrict block, const uint8_t *s1, const uint8_t *s2, int stride); \
\
for (i = 0; i < BUF_UNITS; i++) { \
- int src_offset = i * 64 * sizeof(type) + i; /* Test various alignments */ \
+ int src_offset = i * 64 * sizeof(type) + 8 * i; /* Test various alignments */ \
int dst_offset = i * 64; /* dst must be aligned */ \
randomize_buffers(); \
call_ref(dst0 + dst_offset, src10 + src_offset, src20 + src_offset, 8); \