From 6985a0f516b10b839193bd554a07253a403e41b3 Mon Sep 17 00:00:00 2001 From: Ranjit Kumar Tulabandu Date: Fri, 27 Jan 2017 19:07:45 +0530 Subject: [PATCH] Disable multi-threading in first pass for SVC encoding BUG=webm:1366 Change-Id: I204ef8496884ba7c4debe64f23f50d298b4090c3 --- vp9/encoder/vp9_encoder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/encoder/vp9_encoder.c b/vp9/encoder/vp9_encoder.c index 5dbe62db5..806f07a60 100644 --- a/vp9/encoder/vp9_encoder.c +++ b/vp9/encoder/vp9_encoder.c @@ -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; } -- 2.40.0