shithub: libvpx

Download patch

ref: 3156a28f6120f7fd79079a9525a54c758d4f7f77
parent: 61a87b3628186bf67e5706401357bdb3c3744179
parent: bc30e6e39c8bde9a31e1c314e6d1003ff47f2f7f
author: James Zern <jzern@google.com>
date: Thu Jul 19 01:47:27 EDT 2018

Merge "vpx_sum_squares_2d_i16_neon(): Make |s2| a uint64x1_t."

--- a/vpx_dsp/arm/sum_squares_neon.c
+++ b/vpx_dsp/arm/sum_squares_neon.c
@@ -14,7 +14,7 @@
 #include "./vpx_dsp_rtcd.h"
 
 uint64_t vpx_sum_squares_2d_i16_neon(const int16_t *src, int stride, int size) {
-  int64x1_t s2;
+  uint64x1_t s2;
 
   if (size == 4) {
     int16x4_t s[4];