shithub: libvpx

Download patch

ref: a5906668a32c46a0f033b3a503ac5a159b77fce3
parent: cecdd73db786c2ea29f9d6eff1d30f1e8b75eeb5
author: Fritz Koenig <frkoenig@google.com>
date: Thu Jun 24 10:30:48 EDT 2010

vp8cx : bestsad declared and initialized incorrectly.

bestsad needs to be a int and set to INT_MAX because at the end
of the function it is compared to INT_MAX to determine if there
was a match in the function.

Change-Id: Ie80e88e4c4bb4a1ff9446079b794d14d5a219788

--- a/vp8/encoder/mcomp.c
+++ b/vp8/encoder/mcomp.c
@@ -1238,7 +1238,7 @@
     unsigned char *bestaddress;
     MV *best_mv = &d->bmi.mv.as_mv;
     MV this_mv;
-    unsigned int bestsad = UINT_MAX;
+    int bestsad = INT_MAX;
     int r, c;
 
     unsigned char *check_here;