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
14e3d317
Commit
14e3d317
authored
Feb 19, 2014
by
Tom Finegan
Committed by
Gerrit Code Review
Feb 19, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "error_resilient.c: Cast away MSVC data loss warning."
parents
a63a8e10
fb8a2cfd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
examples/error_resilient.c
examples/error_resilient.c
+1
-1
No files found.
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
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