]> granicus.if.org Git - libvpx/commitdiff
signs reverted
authorJim Bankoski <jimbankoski@google.com>
Thu, 6 Jun 2013 15:59:22 +0000 (08:59 -0700)
committerJim Bankoski <jimbankoski@google.com>
Thu, 6 Jun 2013 15:59:22 +0000 (08:59 -0700)
Change-Id: Ieface458c83eb6e7ee95595d9fc662f372117c9a

vp9/encoder/vp9_rdopt.c

index c48f34ad75d21adf1e78666a7c6bd73875ba8ec3..c2fa480fc97f89d64b55d3feb85505983c8638f0 100644 (file)
@@ -2750,7 +2750,7 @@ int64_t vp9_rd_pick_inter_mode_sb(VP9_COMP *cpi, MACROBLOCK *x,
     // should fix this either by making the motion search just work on
     // a representative block in the boundary ( first ) and then implement a
     // function that does sads when inside the border..
-    if (((mi_row + bhs) < cm->mi_rows || (mi_col + bws) < cm->mi_cols) &&
+    if (((mi_row + bhs) > cm->mi_rows || (mi_col + bws) > cm->mi_cols) &&
         this_mode == NEWMV) {
       continue;
     }