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
8491e3c8
Commit
8491e3c8
authored
Feb 19, 2014
by
James Zern
Committed by
Gerrit Code Review
Feb 19, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "postproc.c: Cast away MSVC data loss warning."
parents
3ba5df49
a3c521e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
examples/postproc.c
examples/postproc.c
+1
-1
No files found.
examples/postproc.c
View file @
8491e3c8
...
...
@@ -118,7 +118,7 @@ int main(int argc, char **argv) {
};
// Decode the frame with 15ms deadline
if
(
vpx_codec_decode
(
&
codec
,
frame
,
frame_size
,
NULL
,
15000
))
if
(
vpx_codec_decode
(
&
codec
,
frame
,
(
unsigned
int
)
frame_size
,
NULL
,
15000
))
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