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
Xiph.Org
aom-rav1e
Commits
8a69cef0
Commit
8a69cef0
authored
May 28, 2014
by
Alex Converse
Committed by
Gerrit Code Review
May 28, 2014
Browse files
Merge "Fix the all intra modes mask constant."
parents
15600eb8
75d77e36
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_rdopt.c
View file @
8a69cef0
...
...
@@ -3162,7 +3162,11 @@ int64_t vp9_rd_pick_inter_mode_sb(VP9_COMP *cpi, MACROBLOCK *x,
}
if
(
bsize
>
cpi
->
sf
.
max_intra_bsize
)
{
mode_skip_mask
|=
0xFF30808
;
const
int
all_intra_modes
=
(
1
<<
THR_DC
)
|
(
1
<<
THR_TM
)
|
(
1
<<
THR_H_PRED
)
|
(
1
<<
THR_V_PRED
)
|
(
1
<<
THR_D135_PRED
)
|
(
1
<<
THR_D207_PRED
)
|
(
1
<<
THR_D153_PRED
)
|
(
1
<<
THR_D63_PRED
)
|
(
1
<<
THR_D117_PRED
)
|
(
1
<<
THR_D45_PRED
);
mode_skip_mask
|=
all_intra_modes
;
}
if
(
!
x
->
in_active_map
)
{
...
...
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