Skip to content
GitLab
Menu
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
33bb4435
Commit
33bb4435
authored
Feb 19, 2014
by
James Zern
Committed by
Gerrit Code Review
Feb 19, 2014
Browse files
Merge "decode_with_drops.c: Cast away MSVC data loss warning."
parents
68d49038
6811dbc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/decode_with_drops.c
View file @
33bb4435
...
...
@@ -120,7 +120,7 @@ int main(int argc, char **argv) {
int
skip
;
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."
);
++
frame_cnt
;
...
...
Write
Preview
Supports
Markdown
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