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
a8122bb9
Commit
a8122bb9
authored
Jan 25, 2016
by
Debargha Mukherjee
Browse files
A minor assert fix for supertx
Change-Id: I532fff64ccaa1f38240ba7ca5ce2f7e1eb531771
parent
3e63170f
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp10/encoder/bitstream.c
View file @
a8122bb9
...
...
@@ -1124,8 +1124,12 @@ static void pack_inter_mode_mvs(VP10_COMP *cpi, const MODE_INFO *mi,
&
ext_tx_encodings
[
mbmi
->
tx_type
]);
}
}
else
{
if
(
!
mbmi
->
skip
)
assert
(
mbmi
->
tx_type
==
DCT_DCT
);
if
(
!
mbmi
->
skip
)
{
#if CONFIG_SUPERTX
if
(
!
supertx_enabled
)
#endif // CONFIG_SUPERTX
assert
(
mbmi
->
tx_type
==
DCT_DCT
);
}
}
#endif // CONFIG_EXT_TX
}
...
...
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