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
2ff108aa
Commit
2ff108aa
authored
Sep 10, 2015
by
Marco Paniconi
Committed by
Gerrit Code Review
Sep 10, 2015
Browse files
Merge "vp8: Small adjustment to cyclic_refresh max_mbs_perframe."
parents
992d9a06
3140e901
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/onyx_if.c
View file @
2ff108aa
...
...
@@ -1918,7 +1918,7 @@ struct VP8_COMP* vp8_create_compressor(VP8_CONFIG *oxcf)
* Currently this is tied to error resilliant mode
*/
cpi
->
cyclic_refresh_mode_enabled
=
cpi
->
oxcf
.
error_resilient_mode
;
cpi
->
cyclic_refresh_mode_max_mbs_perframe
=
(
cpi
->
common
.
mb_rows
*
cpi
->
common
.
mb_cols
)
/
5
;
cpi
->
cyclic_refresh_mode_max_mbs_perframe
=
(
cpi
->
common
.
mb_rows
*
cpi
->
common
.
mb_cols
)
/
7
;
if
(
cpi
->
oxcf
.
number_of_layers
==
1
)
{
cpi
->
cyclic_refresh_mode_max_mbs_perframe
=
(
cpi
->
common
.
mb_rows
*
cpi
->
common
.
mb_cols
)
/
20
;
...
...
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