Revert "dependent tile set to default"
This reverts commit 05c3887418
.
BUG=aomedia:553
Change-Id: Ibbfe3e357bbfb8cb7d07482755c47c64afd30092
This commit is contained in:
Родитель
7f0f6c41ce
Коммит
551d0fed2e
|
@ -354,7 +354,11 @@ static void set_offsets_supertx(const AV1_COMP *const cpi, ThreadData *td,
|
|||
MACROBLOCKD *const xd = &x->e_mbd;
|
||||
const int mi_width = mi_size_wide[bsize];
|
||||
const int mi_height = mi_size_high[bsize];
|
||||
#if CONFIG_DEPENDENT_HORZTILES
|
||||
set_mode_info_offsets(cpi, x, xd, mi_row, mi_col, cm->dependent_horz_tiles);
|
||||
#else
|
||||
set_mode_info_offsets(cpi, x, xd, mi_row, mi_col);
|
||||
#endif
|
||||
|
||||
// Set up distance of MB to edge of frame in 1/8th pel units.
|
||||
assert(!(mi_col & (mi_width - 1)) && !(mi_row & (mi_height - 1)));
|
||||
|
@ -378,7 +382,12 @@ static void set_offsets_extend(const AV1_COMP *const cpi, ThreadData *td,
|
|||
const int mi_width = mi_size_wide[bsize_pred];
|
||||
const int mi_height = mi_size_high[bsize_pred];
|
||||
|
||||
#if CONFIG_DEPENDENT_HORZTILES
|
||||
set_mode_info_offsets(cpi, x, xd, mi_row_ori, mi_col_ori,
|
||||
cm->dependent_horz_tiles);
|
||||
#else
|
||||
set_mode_info_offsets(cpi, x, xd, mi_row_ori, mi_col_ori);
|
||||
#endif
|
||||
|
||||
// Set up limit values for MV components.
|
||||
// Mv beyond the range do not produce new/different prediction block.
|
||||
|
|
|
@ -501,7 +501,6 @@ post_process_cmdline() {
|
|||
soft_enable palette
|
||||
soft_enable alt_intra
|
||||
soft_enable palette_throughput
|
||||
soft_enable dependent_horztiles
|
||||
soft_enable tempmv_signaling
|
||||
|
||||
# Workaround features currently incompatible with highbitdepth
|
||||
|
|
Загрузка…
Ссылка в новой задаче