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
Guillaume Martres
aom-rav1e
Commits
a5f49183
Commit
a5f49183
authored
Jun 27, 2014
by
Tim Kopp
Committed by
Gerrit Code Review
Jun 27, 2014
Browse files
Merge "fix: Only do spatial SVC when there are > 1 layers"
parents
b0959b81
0299a603
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encoder.c
View file @
a5f49183
...
...
@@ -2462,7 +2462,8 @@ int vp9_get_compressed_data(VP9_COMP *cpi, unsigned int *frame_flags,
MV_REFERENCE_FRAME
ref_frame
;
int
arf_src_index
;
const
int
is_spatial_svc
=
cpi
->
use_svc
&&
(
cpi
->
svc
.
number_temporal_layers
==
1
);
(
cpi
->
svc
.
number_temporal_layers
==
1
)
&&
(
cpi
->
svc
.
number_spatial_layers
>
1
);
if
(
!
cpi
)
return
-
1
;
...
...
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