From: Ranjit Kumar Tulabandu Date: Fri, 27 Jan 2017 13:37:45 +0000 (+0530) Subject: Disable multi-threading in first pass for SVC encoding X-Git-Tag: v1.7.0~771^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6985a0f516b10b839193bd554a07253a403e41b3;p=libvpx Disable multi-threading in first pass for SVC encoding BUG=webm:1366 Change-Id: I204ef8496884ba7c4debe64f23f50d298b4090c3 --- 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; }