From: Ronald S. Bultje Date: Mon, 8 Apr 2013 16:16:26 +0000 (-0700) Subject: Fix typo which breaks 4x4 splitmv compound prediction RD code. X-Git-Tag: v1.3.0~1106^2~300 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aeefa6e194b2e844372ef9892689121c50cf1111;p=libvpx Fix typo which breaks 4x4 splitmv compound prediction RD code. 0.15% quality increase on derf, particularly noticeable on hard clips at the higher bitrate end. Change-Id: I02415a96eb9bbc361cba923069625fae71844bc9 --- diff --git a/vp9/common/vp9_reconinter.c b/vp9/common/vp9_reconinter.c index 19c2e968a..5fa63d7c2 100644 --- a/vp9/common/vp9_reconinter.c +++ b/vp9/common/vp9_reconinter.c @@ -1742,7 +1742,7 @@ void vp9_build_inter4x4_predictors_mbuv(MACROBLOCKD *xd, v = &blockd[voffset].bmi.as_mv[1].as_mv; v->row = u->row = b_mv_pred_row(xd, yoffset, 1); - v->row = u->col = b_mv_pred_row(xd, yoffset, 1); + v->col = u->col = b_mv_pred_col(xd, yoffset, 1); } } }