shithub: libvpx

Download patch

ref: 4508eb3123bd9b65a099715ea143680d268ad2ff
parent: 956af1d478c910ee0aa0c0f124311c2d079b42e8
parent: 335cf67d8b720c5dfe5ac60937acbe335d321039
author: Alex Converse <aconverse@google.com>
date: Thu Jul 28 12:36:46 EDT 2016

Merge "Fix 64 to 32 narrowing warning."

--- a/vp9/encoder/vp9_rdopt.c
+++ b/vp9/encoder/vp9_rdopt.c
@@ -506,13 +506,13 @@
 }
 
 // Compute the squares sum squares on all visible 4x4s in the transform block.
-static unsigned sum_squares_visible(const MACROBLOCKD *xd,
-                                    const struct macroblockd_plane *const pd,
-                                    const int16_t *diff, const int diff_stride,
-                                    int blk_row, int blk_col,
-                                    const BLOCK_SIZE plane_bsize,
-                                    const BLOCK_SIZE tx_bsize) {
-  unsigned int sse = 0;
+static int64_t sum_squares_visible(const MACROBLOCKD *xd,
+                                   const struct macroblockd_plane *const pd,
+                                   const int16_t *diff, const int diff_stride,
+                                   int blk_row, int blk_col,
+                                   const BLOCK_SIZE plane_bsize,
+                                   const BLOCK_SIZE tx_bsize) {
+  int64_t sse;
   const int plane_4x4_w = num_4x4_blocks_wide_lookup[plane_bsize];
   const int plane_4x4_h = num_4x4_blocks_high_lookup[plane_bsize];
   const int tx_4x4_w = num_4x4_blocks_wide_lookup[tx_bsize];
@@ -523,10 +523,9 @@
                                              pd->subsampling_y, blk_row);
   if (tx_bsize == BLOCK_4X4 ||
       (b4x4s_to_right_edge >= tx_4x4_w && b4x4s_to_bottom_edge >= tx_4x4_h)) {
-    sse = vpx_sum_squares_2d_i16(diff, diff_stride, tx_bsize);
+    sse = (int64_t)vpx_sum_squares_2d_i16(diff, diff_stride, tx_bsize);
   } else {
     int r, c;
-    unsigned this_sse = 0;
     int max_r = VPXMIN(b4x4s_to_bottom_edge, tx_4x4_h);
     int max_c = VPXMIN(b4x4s_to_right_edge, tx_4x4_w);
     sse = 0;
@@ -534,8 +533,7 @@
     for (r = 0; r < max_r; ++r) {
       // Skip visiting the sub blocks that are wholly within the UMV.
       for (c = 0; c < max_c; ++c) {
-        this_sse = vpx_sum_squares_2d_i16(diff, diff_stride, BLOCK_4X4);
-        sse += this_sse;
+        sse += (int64_t)vpx_sum_squares_2d_i16(diff, diff_stride, BLOCK_4X4);
       }
     }
   }