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
Guillaume Martres
aom-rav1e
Commits
4793324c
Commit
4793324c
authored
Oct 10, 2013
by
Jingning Han
Committed by
Gerrit Code Review
Oct 10, 2013
Browse files
Merge "Allow sub8x8 intra modes test for alt frame coding"
parents
c317fbd6
0d0ed6a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_onyx_if.c
View file @
4793324c
...
...
@@ -776,7 +776,8 @@ void vp9_set_speed_features(VP9_COMP *cpi) {
?
USE_FULL_RD
:
USE_LARGESTALL
;
if
(
MIN
(
cpi
->
common
.
width
,
cpi
->
common
.
height
)
>=
720
)
sf
->
disable_split_mask
=
DISABLE_ALL_SPLIT
;
sf
->
disable_split_mask
=
cpi
->
common
.
show_frame
?
DISABLE_ALL_SPLIT
:
DISABLE_ALL_INTER_SPLIT
;
else
sf
->
disable_split_mask
=
DISABLE_COMPOUND_SPLIT
;
...
...
@@ -794,10 +795,12 @@ void vp9_set_speed_features(VP9_COMP *cpi) {
?
USE_FULL_RD
:
USE_LARGESTALL
);
if
(
MIN
(
cpi
->
common
.
width
,
cpi
->
common
.
height
)
>=
720
)
sf
->
disable_split_mask
=
DISABLE_ALL_SPLIT
;
sf
->
disable_split_mask
=
cpi
->
common
.
show_frame
?
DISABLE_ALL_SPLIT
:
DISABLE_ALL_INTER_SPLIT
;
else
sf
->
disable_split_mask
=
LAST_AND_INTRA_SPLIT_ONLY
;
sf
->
mode_search_skip_flags
=
FLAG_SKIP_INTRA_DIRMISMATCH
|
FLAG_SKIP_INTRA_BESTINTER
|
FLAG_SKIP_COMP_BESTINTRA
|
...
...
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