Merge "Use same bias (against non-zero mv for big blocks) for speed 5."

This commit is contained in:
Marco Paniconi 2015-11-09 19:29:35 +00:00 коммит произвёл Gerrit Code Review
Родитель d1a7c10325 718654848a
Коммит 498fd551fd
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1485,7 +1485,7 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
// Bias against non-zero (above some threshold) motion for large blocks.
// This is temporary fix to avoid selection of large mv for big blocks.
if (cpi->oxcf.speed > 5 &&
if (cpi->oxcf.speed >= 5 &&
cpi->oxcf.content != VP9E_CONTENT_SCREEN &&
(frame_mv[this_mode][ref_frame].as_mv.row > 64 ||
frame_mv[this_mode][ref_frame].as_mv.row < -64 ||