Removing redundant calls to clamp_mv2.

We could avoid calling clamp_mv2 because it has been already called
inside vp9_find_best_ref_mvs function.

Change-Id: I08edeaf3e11e98c19e67b9711b2523ca5fb1416e
This commit is contained in:
Dmitry Kovalev 2013-08-23 15:18:35 -07:00
parent 8e04257bc5
commit cd2cc27af1

View File

@ -553,22 +553,14 @@ static void read_inter_block_mode_info(VP9D_COMP *pbi, MODE_INFO *mi,
switch (mbmi->mode) {
case NEARMV:
mv0->as_int = nearby.as_int;
clamp_mv2(&mv0->as_mv, xd);
if (is_compound) {
if (is_compound)
mv1->as_int = nearby_second.as_int;
clamp_mv2(&mv1->as_mv, xd);
}
break;
case NEARESTMV:
mv0->as_int = nearest.as_int;
clamp_mv2(&mv0->as_mv, xd);
if (is_compound) {
if (is_compound)
mv1->as_int = nearest_second.as_int;
clamp_mv2(&mv1->as_mv, xd);
}
break;
case ZEROMV: