vp9-svc: Fix condition for setting downsampling filter.
Use (width * height) for setting downsampling filter type. Change-Id: If4acfde7ff9339e0584155f8a4d15b2f134211f2
This commit is contained in:
parent
bd990cad72
commit
f0b4868625
@ -656,9 +656,9 @@ int vp9_one_pass_cbr_svc_start_layer(VP9_COMP *const cpi) {
|
||||
lc->scaling_factor_num, lc->scaling_factor_den, &width,
|
||||
&height);
|
||||
|
||||
// For low resolutions: set phase of the filter = 8 (for symmetric averaging
|
||||
// filter), use bilinear for now.
|
||||
if (width <= 320 && height <= 240) {
|
||||
// For resolutions <= QVGA: set phase of the filter = 8 (for symmetric
|
||||
// averaging filter), use bilinear for now.
|
||||
if (width * height <= 320 * 240) {
|
||||
cpi->svc.downsample_filter_type[cpi->svc.spatial_layer_id] = BILINEAR;
|
||||
cpi->svc.downsample_filter_phase[cpi->svc.spatial_layer_id] = 8;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user