Actually include the fix for commit 8f4d1890c.
authorKonstantinos Margaritis <konma@vectorcamp.gr>
Wed, 13 Jul 2022 16:54:30 +0000 (16:54 +0000)
committerKonstantinos Margaritis <konma@vectorcamp.gr>
Wed, 13 Jul 2022 17:21:31 +0000 (17:21 +0000)
Change-Id: I6780f610151f2e092da525ff064d4b69f74fa61b

vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c

index e56733d..33753f7 100644 (file)
@@ -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);