Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
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
Hide 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