vp9: SVC: Fix to condiiton on using source_sad.

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
This commit is contained in:
Marco 2017-05-26 08:43:32 -07:00
parent 9ec9415fd9
commit 146005a911

View 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) {