Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Guillaume Martres
aom-rav1e
Commits
7ae32692
Commit
7ae32692
authored
Aug 19, 2014
by
Jim Bankoski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vpxdec.c : resolve uninitialized member warning
Change-Id: Icd07ee241b1e36bb4c9e40e592bae259e65f2ce4
parent
f274ac7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vpxdec.c
vpxdec.c
+2
-1
No files found.
vpxdec.c
View file @
7ae32692
...
...
@@ -538,7 +538,8 @@ int main_loop(int argc, const char **argv_) {
struct
VpxDecInputContext
input
=
{
NULL
,
NULL
};
struct
VpxInputContext
vpx_input_ctx
;
#if CONFIG_WEBM_IO
struct
WebmInputContext
webm_ctx
=
{
0
};
struct
WebmInputContext
webm_ctx
;
memset
(
&
(
webm_ctx
),
0
,
sizeof
(
webm_ctx
));
input
.
webm_ctx
=
&
webm_ctx
;
#endif
input
.
vpx_input_ctx
=
&
vpx_input_ctx
;
...
...
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