Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
68d49038
Commit
68d49038
authored
Feb 19, 2014
by
James Zern
Committed by
Gerrit Code Review
Feb 19, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "simple_decoder.c: Silence MSVC data loss warning."
parents
8491e3c8
ebf45509
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
examples/simple_decoder.c
examples/simple_decoder.c
+1
-1
No files found.
examples/simple_decoder.c
View file @
68d49038
...
...
@@ -134,7 +134,7 @@ int main(int argc, char **argv) {
size_t
frame_size
=
0
;
const
unsigned
char
*
frame
=
vpx_video_reader_get_frame
(
reader
,
&
frame_size
);
if
(
vpx_codec_decode
(
&
codec
,
frame
,
frame_size
,
NULL
,
0
))
if
(
vpx_codec_decode
(
&
codec
,
frame
,
(
unsigned
int
)
frame_size
,
NULL
,
0
))
die_codec
(
&
codec
,
"Failed to decode frame."
);
while
((
img
=
vpx_codec_get_frame
(
&
codec
,
&
iter
))
!=
NULL
)
{
...
...
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