Disable multi-threading in first pass for SVC encoding

BUG=webm:1366

Change-Id: I204ef8496884ba7c4debe64f23f50d298b4090c3
This commit is contained in:
Ranjit Kumar Tulabandu 2017-01-27 19:07:45 +05:30 committed by Yunqing Wang
parent 407fad2356
commit 6985a0f516

View File

@ -1569,7 +1569,7 @@ void vp9_change_config(struct VP9_COMP *cpi, const VP9EncoderConfig *oxcf) {
cpi->new_mt = 0;
if (((cpi->oxcf.mode == GOOD || cpi->oxcf.mode == BEST) &&
cpi->oxcf.speed < 5 && cpi->oxcf.pass == 1) &&
cpi->oxcf.new_mt)
cpi->oxcf.new_mt && !cpi->use_svc)
cpi->new_mt = 1;
}