1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-28 23:09:59 +02:00

core: move clock from input to its own core folder

This commit is contained in:
Denis Charmet 2018-05-02 15:26:31 +02:00 committed by Rémi Denis-Courmont
parent 0499a452ef
commit 99bfdc3fbf
5 changed files with 6 additions and 8 deletions

View File

@ -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 \

View File

@ -1,9 +1,8 @@
/*****************************************************************************
* clock.c: Clock/System date convertions, stream management
*****************************************************************************
* Copyright (C) 1999-2008 VLC authors and VideoLAN
* Copyright (C) 1999-2018 VLC authors and VideoLAN
* Copyright (C) 2008 Laurent Aimar
* $Id$
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Laurent Aimar < fenrir _AT_ videolan _DOT_ org >

View File

@ -1,9 +1,8 @@
/*****************************************************************************
* 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 >
*

View File

@ -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"

View File

@ -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"