Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
bf7def9a
Commit
bf7def9a
authored
Mar 30, 2015
by
Alex Converse
Committed by
Gerrit Code Review
Mar 30, 2015
Browse files
Merge "Simplify skip check."
parents
b38b32a7
b7605a9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_bitstream.c
View file @
bf7def9a
...
...
@@ -268,8 +268,7 @@ static void pack_inter_mode_mvs(VP9_COMP *cpi, const MODE_INFO *mi,
vp9_write
(
w
,
is_inter
,
vp9_get_intra_inter_prob
(
cm
,
xd
));
if
(
bsize
>=
BLOCK_8X8
&&
cm
->
tx_mode
==
TX_MODE_SELECT
&&
!
(
is_inter
&&
(
skip
||
vp9_segfeature_active
(
seg
,
segment_id
,
SEG_LVL_SKIP
))))
{
!
(
is_inter
&&
skip
))
{
write_selected_tx_size
(
cm
,
xd
,
w
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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