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
14e3d317
Commit
14e3d317
authored
Feb 19, 2014
by
Tom Finegan
Committed by
Gerrit Code Review
Feb 19, 2014
Browse files
Merge "error_resilient.c: Cast away MSVC data loss warning."
parents
a63a8e10
fb8a2cfd
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/error_resilient.c
View file @
14e3d317
...
...
@@ -118,7 +118,7 @@ static void write_ivf_frame_header(FILE *outfile,
return
;
pts
=
pkt
->
data
.
frame
.
pts
;
mem_put_le32
(
header
,
pkt
->
data
.
frame
.
sz
);
mem_put_le32
(
header
,
(
unsigned
int
)
pkt
->
data
.
frame
.
sz
);
mem_put_le32
(
header
+
4
,
pts
&
0xFFFFFFFF
);
mem_put_le32
(
header
+
8
,
pts
>>
32
);
...
...
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