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
99bfdc3f
Commit
99bfdc3f
authored
May 02, 2018
by
Denis Charmet
Committed by
Rémi Denis-Courmont
May 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core: move clock from input to its own core folder
parent
0499a452
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
8 deletions
+6
-8
src/Makefile.am
src/Makefile.am
+2
-2
src/clock/clock.c
src/clock/clock.c
+1
-2
src/clock/clock.h
src/clock/clock.h
+1
-2
src/input/decoder.c
src/input/decoder.c
+1
-1
src/input/es_out.c
src/input/es_out.c
+1
-1
No files found.
src/Makefile.am
View file @
99bfdc3f
...
...
@@ -230,7 +230,7 @@ libvlccore_la_SOURCES = \
playlist/renderer.c
\
input/item.c
\
input/access.c
\
input
/clock.c
\
clock
/clock.c
\
input/control.c
\
input/decoder.c
\
input/demux.c
\
...
...
@@ -241,7 +241,7 @@ libvlccore_la_SOURCES = \
input/input.c
\
input/info.h
\
input/meta.c
\
input
/clock.h
\
clock
/clock.h
\
input/decoder.h
\
input/demux.h
\
input/es_out.h
\
...
...
src/
input
/clock.c
→
src/
clock
/clock.c
View file @
99bfdc3f
/*****************************************************************************
* clock.c: Clock/System date convertions, stream management
*****************************************************************************
* Copyright (C) 1999-20
0
8 VLC authors and VideoLAN
* Copyright (C) 1999-20
1
8 VLC authors and VideoLAN
* Copyright (C) 2008 Laurent Aimar
* $Id$
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
...
...
src/
input
/clock.h
→
src/
clock
/clock.h
View file @
99bfdc3f
/*****************************************************************************
* clock.h: clocks synchronisation
*****************************************************************************
* Copyright (C) 2008 VLC authors and VideoLAN
* Copyright (C) 2008
-2018
VLC authors and VideoLAN
* Copyright (C) 2008 Laurent Aimar
* $Id$
*
* Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
*
...
...
src/input/decoder.c
View file @
99bfdc3f
...
...
@@ -46,7 +46,7 @@
#include "audio_output/aout_internal.h"
#include "stream_output/stream_output.h"
#include "input_internal.h"
#include "clock.h"
#include "
../clock/
clock.h"
#include "decoder.h"
#include "event.h"
#include "resource.h"
...
...
src/input/es_out.c
View file @
99bfdc3f
...
...
@@ -41,7 +41,7 @@
#include <vlc_meta.h>
#include "input_internal.h"
#include "clock.h"
#include "
../clock/
clock.h"
#include "decoder.h"
#include "es_out.h"
#include "event.h"
...
...
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