shithub: libvpx

Download patch

ref: f68288c6a4e13a839a7deb90e94bda033e835601
parent: 5dcb2e3237bb46ba36867eeb2f9e1d4795c571b4
parent: 7788c622863afbb7c11c249ed954e338ca82a6f9
author: Marco Paniconi <[email protected]>
date: Wed Jul 23 09:58:45 EDT 2014

Merge "Fix clang compiler warning in denoising_neon."

--- a/vp8/encoder/arm/neon/denoising_neon.c
+++ b/vp8/encoder/arm/neon/denoising_neon.c
@@ -279,8 +279,8 @@
       {
         const uint32x2_t _7654_3210 = vpaddl_u16(v_sum_block);
         const uint64x1_t _76543210 = vpaddl_u32(_7654_3210);
-        const unsigned int sum_block =
-            vget_lane_u32(vreinterpret_u32_u64(_76543210), 0);
+        const int sum_block =
+            vget_lane_s32(vreinterpret_s32_u64(_76543210), 0);
         if (abs(sum_block - (128 * 8 * 8)) < SUM_DIFF_FROM_AVG_THRESH_UV) {
           return COPY_BLOCK;
         }