summaryrefslogtreecommitdiffstats
path: root/libaom/av1/common/x86/highbd_convolve_2d_avx2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libaom/av1/common/x86/highbd_convolve_2d_avx2.c')
-rw-r--r--libaom/av1/common/x86/highbd_convolve_2d_avx2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libaom/av1/common/x86/highbd_convolve_2d_avx2.c b/libaom/av1/common/x86/highbd_convolve_2d_avx2.c
index ae68f0b..357df12 100644
--- a/libaom/av1/common/x86/highbd_convolve_2d_avx2.c
+++ b/libaom/av1/common/x86/highbd_convolve_2d_avx2.c
@@ -238,10 +238,10 @@ void av1_highbd_convolve_2d_copy_sr_avx2(
if (w == 2) {
do {
- memcpy(dst, src, 2 * sizeof(*src));
+ memmove(dst, src, 2 * sizeof(*src));
src += src_stride;
dst += dst_stride;
- memcpy(dst, src, 2 * sizeof(*src));
+ memmove(dst, src, 2 * sizeof(*src));
src += src_stride;
dst += dst_stride;
h -= 2;