Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
451672e2
Commit
451672e2
authored
Nov 08, 2017
by
Zoe Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add one more level for selective ref frame speed feature
Change-Id: Idb4c986d8cd795e2d2ea76023674c8b2ba5d353c
parent
59d2dd02
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
av1/encoder/speed_features.c
av1/encoder/speed_features.c
+2
-0
av1/encoder/speed_features.h
av1/encoder/speed_features.h
+2
-1
No files found.
av1/encoder/speed_features.c
View file @
451672e2
...
...
@@ -203,6 +203,8 @@ static void set_good_speed_features_framesize_independent(AV1_COMP *cpi,
}
if
(
speed
>=
3
)
{
sf
->
selective_ref_frame
=
3
;
sf
->
tx_size_search_method
=
frame_is_boosted
(
cpi
)
?
USE_FULL_RD
:
USE_LARGESTALL
;
sf
->
mode_search_skip_flags
=
...
...
av1/encoder/speed_features.h
View file @
451672e2
...
...
@@ -335,7 +335,8 @@ typedef struct SPEED_FEATURES {
BLOCK_SIZE
always_this_block_size
;
// Drop less likely picked reference frames in the RD search
// Has two levels for now: 1 and 2, where 2 is more aggressive than 1.
// Has three levels for now: 1, 2 and 3, where higher levels are more
// aggressive than lower ones.
int
selective_ref_frame
;
#if CONFIG_EXT_PARTITION_TYPES
...
...
Write
Preview
Markdown
is supported
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