From cc8236f1d281701afbb05b298769dc6de41500d8 Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Wed, 13 Jul 2022 16:54:30 +0000 Subject: [PATCH] Actually include the fix for commit 8f4d1890c. Change-Id: I6780f610151f2e092da525ff064d4b69f74fa61b --- vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e56733d..33753f7 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); -- 2.7.4