Commit b4c4f648 authored by Jim Bankoski's avatar Jim Bankoski
Browse files

signs reverted

Change-Id: Ieface458c83eb6e7ee95595d9fc662f372117c9a
Showing with 1 addition and 1 deletion
...@@ -2750,7 +2750,7 @@ int64_t vp9_rd_pick_inter_mode_sb(VP9_COMP *cpi, MACROBLOCK *x, ...@@ -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 // should fix this either by making the motion search just work on
// a representative block in the boundary ( first ) and then implement a // a representative block in the boundary ( first ) and then implement a
// function that does sads when inside the border.. // 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) { this_mode == NEWMV) {
continue; continue;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment