]> granicus.if.org Git - libvpx/commitdiff
vp9_mcomp.c visual studio warnings resolved
authorJim Bankoski <jimbankoski@google.com>
Thu, 13 Feb 2014 21:55:18 +0000 (13:55 -0800)
committerJim Bankoski <jimbankoski@google.com>
Fri, 14 Feb 2014 14:35:36 +0000 (06:35 -0800)
Change-Id: I7546cc8db4decbcd094ad76c64385b97666331b0

vp9/encoder/vp9_mcomp.c

index 62b33e4b9b2bdb6ee59f4f26d72c5ec532650c81..e7df9e2c59fd6256d883cc6c60df95d37b029b10 100644 (file)
@@ -871,10 +871,10 @@ int vp9_full_range_search_c(const MACROBLOCK *x, MV *ref_mv, MV *best_mv,
 
   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;