summaryrefslogtreecommitdiff
path: root/vp9/encoder/arm
diff options
context:
space:
mode:
authorKonstantinos Margaritis <konma@vectorcamp.gr>2022-07-13 16:54:30 +0000
committerKonstantinos Margaritis <konma@vectorcamp.gr>2022-07-13 17:21:31 +0000
commitcc8236f1d281701afbb05b298769dc6de41500d8 (patch)
tree3f5f16f77a103aed29be7c226c49a96c613fe772 /vp9/encoder/arm
parent68c68ae959bcd13a0be036ea8eb81319f96faf07 (diff)
downloadlibvpx-cc8236f1d281701afbb05b298769dc6de41500d8.tar
libvpx-cc8236f1d281701afbb05b298769dc6de41500d8.tar.gz
libvpx-cc8236f1d281701afbb05b298769dc6de41500d8.tar.bz2
libvpx-cc8236f1d281701afbb05b298769dc6de41500d8.zip
Actually include the fix for commit 8f4d1890c.
Change-Id: I6780f610151f2e092da525ff064d4b69f74fa61b
Diffstat (limited to 'vp9/encoder/arm')
-rw-r--r--vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c b/vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c
index e56733d43..33753f77b 100644
--- a/vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c
+++ b/vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c
@@ -99,7 +99,7 @@ int vp9_diamond_search_sad_neon(const MACROBLOCK *x,
const int_mv fcenter_mv =
pack_int_mv(center_mv->row >> 3, center_mv->col >> 3);
- const int16x8_t vfcmv = vdupq_n_s16(fcenter_mv.as_int);
+ const int16x8_t vfcmv = vreinterpretq_s16_s32(vdupq_n_s32(fcenter_mv.as_int));
const int ref_row = clamp(ref_mv->row, minmv.as_mv.row, maxmv.as_mv.row);
const int ref_col = clamp(ref_mv->col, minmv.as_mv.col, maxmv.as_mv.col);