Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
f73e47ee
Commit
f73e47ee
authored
Oct 22, 2017
by
Nathan E. Egge
Committed by
Nathan Egge
Oct 23, 2017
Browse files
Add new 32-point Type-IV DST to daala_tx.
Change-Id: I75ce79db34789151cc4cc9183a550f59e1357bfe
parent
f1639a1e
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
av1/common/blockd.h
View file @
f73e47ee
...
...
@@ -948,6 +948,16 @@ static INLINE TxSetType get_ext_tx_set_type(TX_SIZE tx_size, BLOCK_SIZE bs,
return
EXT_TX_SET_MRC_DCT
;
}
#endif // CONFIG_MRC_TX
#if CONFIG_DAALA_TX32
if
(
tx_size_sqr_up
>
TX_32X32
)
return
is_inter
?
EXT_TX_SET_DCT_IDTX
:
EXT_TX_SET_DCTONLY
;
if
(
is_inter
)
return
(
tx_size_sqr
>=
TX_16X16
?
EXT_TX_SET_DTT9_IDTX_1DDCT
:
EXT_TX_SET_ALL16
);
else
return
(
tx_size_sqr
>=
TX_16X16
?
EXT_TX_SET_DTT4_IDTX
:
EXT_TX_SET_DTT4_IDTX_1DDCT
);
#endif
if
(
tx_size_sqr_up
==
TX_32X32
)
return
is_inter
?
EXT_TX_SET_DCT_IDTX
:
EXT_TX_SET_DCTONLY
;
if
(
is_inter
)
...
...
av1/common/daala_tx.c
View file @
f73e47ee
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment