fix the mismatch again in cpu_used 2

Change-Id: Icc4f70f0b0f91c9e7d5d00eedd67841afe2f2679
This commit is contained in:
Yaowu Xu 2013-07-01 19:13:18 -07:00
Родитель d4158283e7
Коммит 9e408e3504
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -738,7 +738,9 @@ void vp9_set_speed_features(VP9_COMP *cpi) {
cpi->common.show_frame == 0); cpi->common.show_frame == 0);
} }
if (speed == 2) { if (speed == 2) {
sf->use_largest_txform = 1; sf->use_largest_txform = !(cpi->common.frame_type == KEY_FRAME ||
cpi->common.intra_only ||
cpi->common.show_frame == 0);
sf->adjust_thresholds_by_speed = 1; sf->adjust_thresholds_by_speed = 1;
sf->less_rectangular_check = 1; sf->less_rectangular_check = 1;
sf->comp_inter_joint_search_thresh = BLOCK_SIZE_TYPES; sf->comp_inter_joint_search_thresh = BLOCK_SIZE_TYPES;