Merge "Disable upsampled references for resolutions above 1080p." into nextgenv2

This commit is contained in:
Yaowu Xu 2016-11-02 04:28:50 +00:00 коммит произвёл Gerrit Code Review
Родитель fb77385fd0 a9e96d4000
Коммит f67e5eec8b
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -69,6 +69,11 @@ static void set_good_speed_feature_framesize_dependent(AV1_COMP *cpi,
int speed) {
AV1_COMMON *const cm = &cpi->common;
// Limit memory usage for high resolutions
if (AOMMIN(cm->width, cm->height) > 1080) {
sf->use_upsampled_references = 0;
}
if (speed >= 1) {
if (AOMMIN(cm->width, cm->height) >= 720) {
sf->disable_split_mask =