Merge "[spatial svc]Don't skip motion search in first pass encoding"

This commit is contained in:
Minghai Shang 2014-06-25 10:31:21 -07:00 коммит произвёл Gerrit Code Review
Родитель 0a103ae999 6bebe65118
Коммит e319e4bfa6
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -607,7 +607,8 @@ void vp9_first_pass(VP9_COMP *cpi) {
&unscaled_last_source_buf_2d);
// TODO(pengchong): Replace the hard-coded threshold
if (raw_motion_error > 25) {
if (raw_motion_error > 25 ||
(cpi->use_svc && cpi->svc.number_temporal_layers == 1)) {
// Test last reference frame using the previous best mv as the
// starting point (best reference) for the search.
first_pass_motion_search(cpi, x, &best_ref_mv.as_mv, &mv.as_mv,