VP9-SVC: Bugfix to allow skipping lower layer(s) encoding.

The setting of svc->spatial_layer_to_encode was missing
in VP9E_SET_SVC_LAYER_ID.

Change-Id: I015b1a64adb9ef2644d6477a02d9d9364c8462b9
This commit is contained in:
Marco 2015-10-12 16:05:27 -07:00
Родитель 1799f2f81d
Коммит 1ce01eaaf7
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -1373,6 +1373,7 @@ static vpx_codec_err_t ctrl_set_svc_layer_id(vpx_codec_alg_priv_t *ctx,
SVC *const svc = &cpi->svc;
svc->first_spatial_layer_to_encode = data->spatial_layer_id;
svc->spatial_layer_to_encode = data->spatial_layer_id;
svc->temporal_layer_id = data->temporal_layer_id;
// Checks on valid layer_id input.
if (svc->temporal_layer_id < 0 ||