shithub: libvpx

Download patch

ref: 6025ec790161129810fd722737947ee026aaa7e0
parent: bf5f2e7f902dddf07e68ecc6701f871942707e4c
author: Jim Bankoski <jimbankoski@google.com>
date: Thu Feb 13 08:55:18 EST 2014

vp9_mcomp.c visual studio warnings resolved

Change-Id: I7546cc8db4decbcd094ad76c64385b97666331b0

--- a/vp9/encoder/vp9_mcomp.c
+++ b/vp9/encoder/vp9_mcomp.c
@@ -871,10 +871,10 @@
 
   MV this_mv;
 
-  int bestsad = INT_MAX;
+  unsigned int bestsad = INT_MAX;
   int ref_row, ref_col;
 
-  int thissad;
+  unsigned int thissad;
   const MV fcenter_mv = {center_mv->row >> 3, center_mv->col >> 3};
 
   const int *mvjsadcost = x->nmvjointsadcost;
--