Removed is_inter_mode() check
If a reference frame is inter, the only valid modes would be inter modes. This check is unnecessary. Change-Id: Ib8433ab5a3418f94149ee4e3062d48d7740d225a
This commit is contained in:
Родитель
dd1e6b8e6f
Коммит
37c3144ed7
|
@ -714,11 +714,9 @@ static void read_mb_modes_mv(VP9D_COMP *pbi, MODE_INFO *mi, MB_MODE_INFO *mbmi,
|
|||
#endif
|
||||
}
|
||||
|
||||
if (is_inter_mode(mbmi->mode)) {
|
||||
mbmi->interp_filter = cm->mcomp_filter_type == SWITCHABLE
|
||||
? read_switchable_filter_type(pbi, r)
|
||||
: cm->mcomp_filter_type;
|
||||
}
|
||||
mbmi->interp_filter = cm->mcomp_filter_type == SWITCHABLE
|
||||
? read_switchable_filter_type(pbi, r)
|
||||
: cm->mcomp_filter_type;
|
||||
|
||||
if (cm->comp_pred_mode == COMP_PREDICTION_ONLY ||
|
||||
(cm->comp_pred_mode == HYBRID_PREDICTION &&
|
||||
|
|
Загрузка…
Ссылка в новой задаче