Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Steve Lhomme
VLC
Commits
47c53ad4
Commit
47c53ad4
authored
Jul 30, 2017
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stats: fix dubious cast
parent
d9d911df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/misc/stats.c
modules/misc/stats.c
+2
-1
No files found.
modules/misc/stats.c
View file @
47c53ad4
...
...
@@ -152,7 +152,8 @@ static int Demux( demux_t *p_demux )
p_block
->
i_dts
=
p_block
->
i_pts
=
date_Increment
(
&
p_sys
->
pts
,
kBufferSize
);
msg_Dbg
(
p_demux
,
"demux got %d ms offset"
,
(
int
)(
mdate
()
-
*
(
mtime_t
*
)
p_block
->
p_buffer
)
/
1000
);
msg_Dbg
(
p_demux
,
"demux got %"
PRId64
" ms offset"
,
(
mdate
()
-
*
(
mtime_t
*
)
p_block
->
p_buffer
)
/
1000
);
//es_out_SetPCR( p_demux->out, p_block->i_pts );
...
...
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