Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
681d5e90
Commit
681d5e90
authored
Nov 24, 2014
by
Marco
Committed by
Gerrit Code Review
Nov 24, 2014
Browse files
Merge "Only allow for cyclic refresh (aq=3 mode) for base layer."
parents
dfdfb2d0
53c3f2ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_aq_cyclicrefresh.c
View file @
681d5e90
...
...
@@ -184,7 +184,8 @@ void vp9_cyclic_refresh_setup(VP9_COMP *const cpi) {
// Don't apply refresh on key frame or enhancement layer frames.
if
(
!
apply_cyclic_refresh
||
(
cm
->
frame_type
==
KEY_FRAME
)
||
(
cpi
->
svc
.
temporal_layer_id
>
0
))
{
(
cpi
->
svc
.
temporal_layer_id
>
0
)
||
(
cpi
->
svc
.
spatial_layer_id
>
0
))
{
// Set segmentation map to 0 and disable.
vpx_memset
(
seg_map
,
0
,
cm
->
mi_rows
*
cm
->
mi_cols
);
vp9_disable_segmentation
(
&
cm
->
seg
);
...
...
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