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
1cc0e67d
Commit
1cc0e67d
authored
May 02, 2013
by
Ronald S. Bultje
Committed by
Gerrit Code Review
May 02, 2013
Browse files
Merge "Set transform size correctly for non-tx_select splitmv/i4x4_pred." into experimental
parents
96f8171d
06df1f82
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
1cc0e67d
...
...
@@ -2606,6 +2606,9 @@ static void encode_superblock(VP9_COMP *cpi, TOKENEXTRA **t,
sz
=
TX_16X16
;
if
(
sz
==
TX_16X16
&&
bsize
<
BLOCK_SIZE_MB16X16
)
sz
=
TX_8X8
;
if
(
sz
==
TX_8X8
&&
(
xd
->
mode_info_context
->
mbmi
.
mode
==
SPLITMV
||
xd
->
mode_info_context
->
mbmi
.
mode
==
I4X4_PRED
))
sz
=
TX_4X4
;
for
(
y
=
0
;
y
<
bh
;
y
++
)
{
for
(
x
=
0
;
x
<
bw
;
x
++
)
{
...
...
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