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
a63a8e10
Commit
a63a8e10
authored
Feb 19, 2014
by
Tom Finegan
Committed by
Gerrit Code Review
Feb 19, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "decode_to_md5.c: Silence warning with cast."
parents
e2a02551
fdf3bfa7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
examples/decode_to_md5.c
examples/decode_to_md5.c
+1
-1
No files found.
examples/decode_to_md5.c
View file @
a63a8e10
...
...
@@ -115,7 +115,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