summaryrefslogtreecommitdiff
path: root/vp10/decoder/decodemv.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2015-10-02 11:51:54 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2015-10-12 14:45:18 -0400
commit5b4805d6e9161d4fe28879bc5e5eaff8a2da89c0 (patch)
treed140433f9be215097d33e7b7e4915286cddee870 /vp10/decoder/decodemv.c
parent2e45ce1493a0dd6ff7bc13391b3600bfb9758aea (diff)
downloadlibvpx-5b4805d6e9161d4fe28879bc5e5eaff8a2da89c0.tar
libvpx-5b4805d6e9161d4fe28879bc5e5eaff8a2da89c0.tar.gz
libvpx-5b4805d6e9161d4fe28879bc5e5eaff8a2da89c0.tar.bz2
libvpx-5b4805d6e9161d4fe28879bc5e5eaff8a2da89c0.zip
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
Diffstat (limited to 'vp10/decoder/decodemv.c')
-rw-r--r--vp10/decoder/decodemv.c4
1 files changed, 2 insertions, 2 deletions
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]);
}
}