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
3d544bd6
Commit
3d544bd6
authored
Nov 21, 2014
by
Alex Converse
Committed by
Gerrit Code Review
Nov 21, 2014
Browse files
Merge "Drop special inter mode selection for screen content."
parents
130b151e
722e9d61
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_speed_features.c
View file @
3d544bd6
...
...
@@ -204,6 +204,7 @@ static void set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf,
VP9_COMMON
*
const
cm
=
&
cpi
->
common
;
const
int
is_keyframe
=
cm
->
frame_type
==
KEY_FRAME
;
const
int
frames_since_key
=
is_keyframe
?
0
:
cpi
->
rc
.
frames_since_key
;
(
void
)
content
;
sf
->
static_segmentation
=
0
;
sf
->
adaptive_rd_thresh
=
1
;
sf
->
use_fast_coef_costing
=
1
;
...
...
@@ -307,13 +308,6 @@ static void set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf,
}
if
(
speed
>=
6
)
{
if
(
content
==
VP9E_CONTENT_SCREEN
)
{
int
i
;
// Allow fancy modes at all sizes since SOURCE_VAR_BASED_PARTITION is used
for
(
i
=
0
;
i
<
BLOCK_SIZES
;
++
i
)
sf
->
inter_mode_mask
[
i
]
=
INTER_NEAREST_NEAR_NEW
;
}
// Adaptively switch between SOURCE_VAR_BASED_PARTITION and FIXED_PARTITION.
sf
->
partition_search_type
=
VAR_BASED_PARTITION
;
sf
->
search_type_check_frequency
=
50
;
...
...
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