vp9: SVC: Fix to condiiton on using source_sad.
authorMarco <marpan@google.com>
Fri, 26 May 2017 15:43:32 +0000 (08:43 -0700)
committerMarco <marpan@google.com>
Fri, 26 May 2017 15:46:50 +0000 (08:46 -0700)
Fix the condition on usage of source_sad for temporal layers.
FIx allows it to be used for the case of 1 temporal layer.

Change-Id: I02b1b0ade67a7889d1b93cee66d27c0951131fc3

vp9/encoder/vp9_encoder.c

index a97e606..90d5d03 100644 (file)
@@ -3518,7 +3518,7 @@ static void encode_without_recode_loop(VP9_COMP *cpi, size_t *size,
 
   if ((cpi->use_svc &&
        (cpi->svc.spatial_layer_id < cpi->svc.number_spatial_layers - 1 ||
-        cpi->svc.temporal_layer_id != cpi->svc.number_temporal_layers - 1 ||
+        cpi->svc.temporal_layer_id < cpi->svc.number_temporal_layers - 1 ||
         cpi->svc.current_superframe < 1)) ||
       cpi->resize_pending || cpi->resize_state || cpi->external_resize ||
       cpi->resize_state != ORIG) {