From 5b4805d6e9161d4fe28879bc5e5eaff8a2da89c0 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Fri, 2 Oct 2015 11:51:54 -0400 Subject: vp10: remove clamp_mv2() call from vp10_find_best_ref_mvs(). This actually has no effect whatsoever, since the input MVs themselves are clamped by clamp_mv_ref() already, which is significantly more restrictive in its bounds. Change-Id: I4a3a7b2b121ee422c56428c2a12d930c3813c06e --- vp10/decoder/decodemv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vp10/decoder/decodemv.c') diff --git a/vp10/decoder/decodemv.c b/vp10/decoder/decodemv.c index f157ada20..2fb8da24b 100644 --- a/vp10/decoder/decodemv.c +++ b/vp10/decoder/decodemv.c @@ -523,8 +523,8 @@ static void read_inter_block_mode_info(VP10Decoder *const pbi, if (bsize < BLOCK_8X8 || mbmi->mode != ZEROMV) { for (ref = 0; ref < 1 + is_compound; ++ref) { - vp10_find_best_ref_mvs(xd, allow_hp, ref_mvs[mbmi->ref_frame[ref]], - &nearestmv[ref], &nearmv[ref]); + vp10_find_best_ref_mvs(allow_hp, ref_mvs[mbmi->ref_frame[ref]], + &nearestmv[ref], &nearmv[ref]); } } -- cgit v1.2.3