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
75290d9b
Commit
75290d9b
authored
Aug 22, 2014
by
Jim Bankoski
Browse files
vp9_cx_iface.c: spatial_svc resolve missing initializer warning
Change-Id: I3f56a4d64828a74c370a5b3247a5f00e554a922c
parent
812506b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/vp9_cx_iface.c
View file @
75290d9b
...
...
@@ -978,8 +978,9 @@ static vpx_codec_err_t encoder_encode(vpx_codec_alg_priv_t *ctx,
cx_data_sz
-=
size
;
#if CONFIG_SPATIAL_SVC
if
(
is_spatial_svc
(
cpi
))
{
vpx_codec_cx_pkt_t
pkt
=
{
0
}
;
vpx_codec_cx_pkt_t
pkt
;
int
i
;
vp9_zero
(
pkt
);
pkt
.
kind
=
VPX_CODEC_SPATIAL_SVC_LAYER_SIZES
;
for
(
i
=
0
;
i
<
cpi
->
svc
.
number_spatial_layers
;
++
i
)
{
pkt
.
data
.
layer_sizes
[
i
]
=
cpi
->
svc
.
layer_context
[
i
].
layer_size
;
...
...
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