Merge "changed to avoid code confusion" into experimental

This commit is contained in:
Yaowu Xu 2012-10-23 11:54:25 -07:00 коммит произвёл Gerrit Code Review
Родитель 5d739f507e 906c1b4bd9
Коммит bf284cee80
1 изменённых файлов: 4 добавлений и 5 удалений

Просмотреть файл

@ -254,11 +254,10 @@ void vp8_find_best_ref_mvs(MACROBLOCKD *xd,
// If we see a 0,0 vector for a second time we have reached the end of
// the list of valid candidate vectors.
if (!this_mv.as_int)
if (zero_seen)
if (!this_mv.as_int && zero_seen)
break;
else
zero_seen = TRUE;
zero_seen = zero_seen || !this_mv.as_int;
vp8_clamp_mv(&this_mv,
xd->mb_to_left_edge - LEFT_TOP_MARGIN + 16,