Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Jean-Baptiste Kempf
vlc
Commits
6eac155c
Commit
6eac155c
authored
May 02, 2018
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mtime: remove unused date_Move()
parent
1f855645
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
13 deletions
+0
-13
include/vlc_mtime.h
include/vlc_mtime.h
+0
-1
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/misc/mtime.c
src/misc/mtime.c
+0
-11
No files found.
include/vlc_mtime.h
View file @
6eac155c
...
...
@@ -71,7 +71,6 @@ VLC_API void date_Init( date_t *, uint32_t, uint32_t );
VLC_API
void
date_Change
(
date_t
*
,
uint32_t
,
uint32_t
);
VLC_API
void
date_Set
(
date_t
*
,
mtime_t
);
VLC_API
mtime_t
date_Get
(
const
date_t
*
);
VLC_API
void
date_Move
(
date_t
*
,
mtime_t
);
VLC_API
mtime_t
date_Increment
(
date_t
*
,
uint32_t
);
VLC_API
mtime_t
date_Decrement
(
date_t
*
,
uint32_t
);
VLC_API
uint64_t
NTPtime64
(
void
);
...
...
src/libvlccore.sym
View file @
6eac155c
...
...
@@ -72,7 +72,6 @@ date_Decrement
date_Get
date_Increment
date_Init
date_Move
date_Set
decoder_AbortPictures
decoder_GetDisplayDate
...
...
src/misc/mtime.c
View file @
6eac155c
...
...
@@ -131,17 +131,6 @@ mtime_t date_Get( const date_t *p_date )
return
p_date
->
date
;
}
/**
* Move forwards or backwards the date of a date_t.
*
* \param date to move
* \param difference value
*/
void
date_Move
(
date_t
*
p_date
,
mtime_t
i_difference
)
{
p_date
->
date
+=
i_difference
;
}
/**
* Increment the date and return the result, taking into account
* rounding errors.
...
...
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