diff options
author | Andrey Semashev <andrey.semashev@gmail.com> | 2018-05-24 00:07:36 +0300 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-05-30 02:42:10 +0200 |
commit | d7eb8d84757155c1fb0fe1a8269025e22e9bf0ec (patch) | |
tree | 618fa9eb66081405b3f946d44f31fbd46d9a42b7 /tests/checkasm | |
parent | 500e6387116230c905b7a39baae7aa86d627a446 (diff) | |
download | ffmpeg-d7eb8d84757155c1fb0fe1a8269025e22e9bf0ec.tar.gz |
lavfi/tests: Fix 16-bit vf_blend test to avoid memory not aligned to 2 bytes
Generic C implementation of vf_blend performs reads and writes of 16-bit
elements, which requires the buffers to be aligned to at least 2-byte
boundary.
Also, the change fixes source buffer overrun caused by src_offset being
added to to test handling of misaligned buffers.
Fixes: #7226
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/checkasm')
-rw-r--r-- | tests/checkasm/vf_blend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/vf_blend.c b/tests/checkasm/vf_blend.c index 912f3a2c38..a7578fec39 100644 --- a/tests/checkasm/vf_blend.c +++ b/tests/checkasm/vf_blend.c @@ -71,7 +71,7 @@ w = WIDTH / depth; \ \ for (i = 0; i < BUF_UNITS - 1; i++) { \ - int src_offset = i * SIZE_PER_UNIT + i; /* Test various alignments */ \ + int src_offset = i * SIZE_PER_UNIT + (BUF_UNITS - 1 - i) * depth; /* Test various alignments */ \ int dst_offset = i * SIZE_PER_UNIT; /* dst must be aligned */ \ randomize_buffers(); \ call_ref(top1 + src_offset, w, bot1 + src_offset, w, \ |