Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
3f35c3e3
Commit
3f35c3e3
authored
Apr 05, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert [19092] and really fix the variable naming problem - closes #1082
parent
620490ef
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
src/misc/mtime.c
src/misc/mtime.c
+2
-3
No files found.
src/misc/mtime.c
View file @
3f35c3e3
...
@@ -160,7 +160,6 @@ mtime_t mdate( void )
...
@@ -160,7 +160,6 @@ mtime_t mdate( void )
#elif defined( WIN32 ) || defined( UNDER_CE )
#elif defined( WIN32 ) || defined( UNDER_CE )
/* We don't need the real date, just the value of a high precision timer */
/* We don't need the real date, just the value of a high precision timer */
static
mtime_t
freq
=
I64C
(
-
1
);
static
mtime_t
freq
=
I64C
(
-
1
);
mtime_t
usec_time
;
if
(
freq
==
I64C
(
-
1
)
)
if
(
freq
==
I64C
(
-
1
)
)
{
{
...
@@ -226,9 +225,9 @@ mtime_t mdate( void )
...
@@ -226,9 +225,9 @@ mtime_t mdate( void )
{
{
/* Counter wrapped */
/* Counter wrapped */
i_wrap_counts
++
;
i_wrap_counts
++
;
usec_time
+=
I64C
(
0x100000000
)
*
1000
;
res
+=
I64C
(
0x100000000
)
*
1000
;
}
}
i_previous_time
=
usec_time
;
i_previous_time
=
res
;
LeaveCriticalSection
(
&
date_lock
);
LeaveCriticalSection
(
&
date_lock
);
}
}
#else
#else
...
...
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