Skip to content
GitLab
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
343acaa8
Commit
343acaa8
authored
Nov 03, 2014
by
Marco
Committed by
Gerrit Code Review
Nov 03, 2014
Browse files
Merge "Allow disable of refresh golden for more than 1 layer encoding."
parents
0ca5908f
d6b68837
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encoder.c
View file @
343acaa8
...
...
@@ -2983,7 +2983,9 @@ static int get_ref_frame_flags(const VP9_COMP *cpi) {
if
(
gold_is_last
)
flags
&=
~
VP9_GOLD_FLAG
;
if
(
cpi
->
rc
.
frames_till_gf_update_due
==
INT_MAX
&&
!
is_two_pass_svc
(
cpi
))
if
(
cpi
->
rc
.
frames_till_gf_update_due
==
INT_MAX
&&
(
cpi
->
svc
.
number_temporal_layers
==
1
&&
cpi
->
svc
.
number_spatial_layers
==
1
))
flags
&=
~
VP9_GOLD_FLAG
;
if
(
alt_is_last
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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