shithub: libvpx

Download patch

ref: 99c573f0187dfead4a04b01402613e0cb8cb26bb
parent: ecdb6a00c273b45d38b9079c5bcc6a4d84d9da1a
parent: b67e1f701f47e85352054191e12c4a201f5e49fd
author: Yunqing Wang <yunqingwang@google.com>
date: Tue Jan 3 12:46:15 EST 2017

Merge "Fix for out of range motion vector bug in joint motion search"

--- a/vp9/encoder/vp9_mcomp.c
+++ b/vp9/encoder/vp9_mcomp.c
@@ -2318,11 +2318,14 @@
   const struct buf_2d *const what = &x->plane[0].src;
   const struct buf_2d *const in_what = &xd->plane[0].pre[0];
   const MV fcenter_mv = { center_mv->row >> 3, center_mv->col >> 3 };
-  unsigned int best_sad =
+  unsigned int best_sad = INT_MAX;
+  int i, j;
+  clamp_mv(ref_mv, x->mv_limits.col_min, x->mv_limits.col_max,
+           x->mv_limits.row_min, x->mv_limits.row_max);
+  best_sad =
       fn_ptr->sdaf(what->buf, what->stride, get_buf_from_mv(in_what, ref_mv),
                    in_what->stride, second_pred) +
       mvsad_err_cost(x, ref_mv, &fcenter_mv, error_per_bit);
-  int i, j;
 
   for (i = 0; i < search_range; ++i) {
     int best_site = -1;