Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
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
videolan
vlc
Commits
1379ab26
Commit
1379ab26
authored
May 01, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove UI64_C
Turns out it was only used once in the whole tree.
parent
13a7c9af
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
include/vlc_common.h
include/vlc_common.h
+0
-1
modules/demux/live555.cpp
modules/demux/live555.cpp
+2
-2
No files found.
include/vlc_common.h
View file @
1379ab26
...
...
@@ -864,7 +864,6 @@ VLC_EXPORT( char *, vlc_strcasestr, ( const char *s1, const char *s2 ) );
/* 64 bits integer constant suffix */
#define I64C(x) INT64_C(x)
#define UI64C(x) UINT64_C(x)
#if defined(WIN32) || defined(UNDER_CE)
/* win32, cl and icl support */
...
...
modules/demux/live555.cpp
View file @
1379ab26
...
...
@@ -1541,11 +1541,11 @@ static void StreamRead( void *p_private, unsigned int i_size,
//msg_Dbg( p_demux, "pts: %d", pts.tv_sec );
int64_t
i_pts
=
(
uint64_t
)
pts
.
tv_sec
*
UI
64
C
(
1000000
)
+
int64_t
i_pts
=
(
uint64_t
)
pts
.
tv_sec
*
UI
NT64_
C
(
1000000
)
+
(
uint64_t
)
pts
.
tv_usec
;
/* XXX Beurk beurk beurk Avoid having negative value XXX */
i_pts
&=
UI
64
C
(
0x00ffffffffffffff
);
i_pts
&=
UI
NT64_
C
(
0x00ffffffffffffff
);
if
(
tk
->
b_quicktime
&&
tk
->
p_es
==
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