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
e4e85ad4
Commit
e4e85ad4
authored
Nov 13, 2014
by
Yaowu Xu
Committed by
Gerrit Code Review
Nov 13, 2014
Browse files
Merge "adapt the adjustment limit for rate correction factor in RTC mode"
parents
35de9db3
9f79259e
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_ratectrl.c
View file @
e4e85ad4
...
...
@@ -430,7 +430,7 @@ void vp9_rc_update_rate_correction_factors(VP9_COMP *cpi, int damp_var) {
adjustment_limit
=
0
.
75
;
break
;
case
1
:
adjustment_limit
=
0
.
375
;
adjustment_limit
=
0
.
125
+
0
.
5
*
MIN
(
1
,
fabs
(
log10
(
0
.
01
*
correction_factor
)))
;
break
;
case
2
:
default:
...
...
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