Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
Commits
43b9e785
Commit
43b9e785
authored
Aug 25, 2017
by
Marco Paniconi
Committed by
Gerrit Code Review
Aug 25, 2017
Browse files
Merge "vp9: SVC: Modify mv search condition in speed features."
parents
3e069846
a74593b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
vp9/encoder/vp9_speed_features.c
vp9/encoder/vp9_speed_features.c
+5
-1
No files found.
vp9/encoder/vp9_speed_features.c
View file @
43b9e785
...
@@ -560,8 +560,12 @@ static void set_rt_speed_feature_framesize_independent(
...
@@ -560,8 +560,12 @@ static void set_rt_speed_feature_framesize_independent(
sf
->
adaptive_rd_thresh
=
3
;
sf
->
adaptive_rd_thresh
=
3
;
sf
->
mv
.
search_method
=
FAST_DIAMOND
;
sf
->
mv
.
search_method
=
FAST_DIAMOND
;
sf
->
mv
.
fullpel_search_step_param
=
10
;
sf
->
mv
.
fullpel_search_step_param
=
10
;
// For SVC: use better mv search on base temporal layer, and only
// on base spatial layer if highest resolution is above 640x360.
if
(
cpi
->
svc
.
number_temporal_layers
>
2
&&
if
(
cpi
->
svc
.
number_temporal_layers
>
2
&&
cpi
->
svc
.
temporal_layer_id
==
0
)
{
cpi
->
svc
.
temporal_layer_id
==
0
&&
(
cpi
->
svc
.
spatial_layer_id
==
0
||
cpi
->
oxcf
.
width
*
cpi
->
oxcf
.
height
<=
640
*
360
))
{
sf
->
mv
.
search_method
=
NSTEP
;
sf
->
mv
.
search_method
=
NSTEP
;
sf
->
mv
.
fullpel_search_step_param
=
6
;
sf
->
mv
.
fullpel_search_step_param
=
6
;
}
}
...
...
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