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
907f5891
Commit
907f5891
authored
Nov 25, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport [18057]: Win32 performance timer overflow fix
parent
03df9567
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
src/misc/mtime.c
src/misc/mtime.c
+10
-4
No files found.
src/misc/mtime.c
View file @
907f5891
...
...
@@ -120,7 +120,6 @@ mtime_t mdate( void )
#elif defined( WIN32 ) || defined( UNDER_CE )
/* We don't need the real date, just the value of a high precision timer */
static
mtime_t
freq
=
I64C
(
-
1
);
mtime_t
usec_time
;
if
(
freq
==
I64C
(
-
1
)
)
{
...
...
@@ -150,9 +149,15 @@ mtime_t mdate( void )
if
(
freq
!=
0
)
{
/* Microsecond resolution */
QueryPerformanceCounter
(
(
LARGE_INTEGER
*
)
&
usec_time
);
return
(
usec_time
*
1000000
)
/
freq
;
LARGE_INTEGER
counter
;
QueryPerformanceCounter
(
&
counter
);
/* Convert to from (1/freq) to microsecond resolution */
/* We need to split the division to avoid 63-bits overflow */
lldiv_t
d
=
lldiv
(
counter
.
QuadPart
,
freq
);
return
(
d
.
quot
*
1000000
)
+
((
d
.
rem
*
1000000
)
/
freq
);
}
else
{
...
...
@@ -164,6 +169,7 @@ mtime_t mdate( void )
static
CRITICAL_SECTION
date_lock
;
static
mtime_t
i_previous_time
=
I64C
(
-
1
);
static
int
i_wrap_counts
=
-
1
;
mtime_t
usec_time
;
if
(
i_wrap_counts
==
-
1
)
{
...
...
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