shithub: libvpx

Download patch

ref: 6985a0f516b10b839193bd554a07253a403e41b3
parent: 407fad235629e93bc31635761f21d58155cebd8a
author: Ranjit Kumar Tulabandu <ranjit.tulabandu@ittiam.com>
date: Fri Jan 27 14:07:45 EST 2017

Disable multi-threading in first pass for SVC encoding

BUG=webm:1366

Change-Id: I204ef8496884ba7c4debe64f23f50d298b4090c3

--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -1569,7 +1569,7 @@
   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;
 }