fix filtering of uv int4x4 for odd rows

Change-Id: I61f91855430e11da45d4e91ec6d3a8976c461cb7
This commit is contained in:
Janne Salonen
2016-09-27 17:00:55 -07:00
committed by Yaowu Xu
parent 15149484ec
commit e8a3dbc0ff

View File

@@ -1054,6 +1054,8 @@ void av1_setup_mask(AV1_COMMON *const cm, const int mi_row, const int mi_col,
lfm->above_uv[TX_8X8] |= lfm->above_uv[TX_16X16] & 0xff00;
lfm->above_uv[TX_16X16] &= ~(lfm->above_uv[TX_16X16] & 0xff00);
}
} else {
lfm->above_int_4x4_uv = lfm->left_int_4x4_uv;
}
if (mi_col + MAX_MIB_SIZE > cm->mi_cols) {