Merge "Fix for compile error with RECT_TX without EXT_TX" into nextgenv2

This commit is contained in:
Yue Chen 2016-09-27 06:46:19 +00:00 коммит произвёл Gerrit Code Review
Родитель c8b229772e a7c814664e
Коммит 6c6ddac3a4
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -306,14 +306,14 @@ static TX_SIZE read_tx_size_inter(AV1_COMMON *cm, MACROBLOCKD *xd,
if (allow_select && tx_mode == TX_MODE_SELECT) {
const TX_SIZE coded_tx_size =
read_selected_tx_size(cm, xd, inter_tx_size_cat_lookup[bsize], r);
#if !CONFIG_RECT_TX
assert(coded_tx_size <= max_txsize_lookup[bsize]);
#else
#if CONFIG_EXT_TX && CONFIG_RECT_TX
if (coded_tx_size > max_txsize_lookup[bsize]) {
assert(coded_tx_size == max_txsize_lookup[bsize] + 1);
return max_txsize_rect_lookup[bsize];
}
#endif // !CONFIG_RECT_TX
#else
assert(coded_tx_size <= max_txsize_lookup[bsize]);
#endif // CONFIG_EXT_TX && CONFIG_RECT_TX
return coded_tx_size;
} else {
return tx_size_from_tx_mode(bsize, cm->tx_mode, 1);