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
264228f0
Commit
264228f0
authored
Sep 24, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved clock interface from input_internal.h to input_clock.h
parent
7e3a4e14
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
53 additions
and
16 deletions
+53
-16
src/Makefile.am
src/Makefile.am
+1
-0
src/input/clock.c
src/input/clock.c
+2
-2
src/input/input_clock.h
src/input/input_clock.h
+48
-0
src/input/input_internal.h
src/input/input_internal.h
+2
-14
No files found.
src/Makefile.am
View file @
264228f0
...
...
@@ -306,6 +306,7 @@ SOURCES_libvlc_common = \
input/es_out.c
\
input/input.c
\
input/meta.c
\
input/input_clock.h
\
input/input_internal.h
\
input/vlm_internal.h
\
input/stream.c
\
...
...
src/input/clock.c
View file @
264228f0
...
...
@@ -30,8 +30,8 @@
#endif
#include <vlc_common.h>
#include "input_
internal
.h"
#include <vlc_input.h>
#include "input_
clock
.h"
/*
* DISCUSSION : SYNCHRONIZATION METHOD
...
...
src/input/input_clock.h
0 → 100644
View file @
264228f0
/*****************************************************************************
* clock.h: clocks synchronisation
*****************************************************************************
* Copyright (C) 2008 the VideoLAN team
* Copyright (C) 2008 Laurent Aimar
* $Id$
*
* Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
# error This header file can only be included from LibVLC.
#endif
#ifndef _INPUT_CLOCK_H
#define _INPUT_CLOCK_H 1
#include <vlc_common.h>
typedef
struct
input_clock_t
input_clock_t
;
input_clock_t
*
input_clock_New
(
bool
b_master
,
int
i_cr_average
,
int
i_rate
);
void
input_clock_Delete
(
input_clock_t
*
);
void
input_clock_SetPCR
(
input_clock_t
*
,
vlc_object_t
*
p_log
,
bool
b_can_pace_control
,
mtime_t
i_clock
,
mtime_t
i_system
);
void
input_clock_ResetPCR
(
input_clock_t
*
);
mtime_t
input_clock_GetTS
(
input_clock_t
*
,
mtime_t
i_pts_delay
,
mtime_t
);
void
input_clock_SetRate
(
input_clock_t
*
cl
,
int
i_rate
);
void
input_clock_SetMaster
(
input_clock_t
*
cl
,
bool
b_master
);
mtime_t
input_clock_GetWakeup
(
input_clock_t
*
cl
);
#endif
src/input/input_internal.h
View file @
264228f0
...
...
@@ -32,6 +32,8 @@
#include <vlc_demux.h>
#include <vlc_input.h>
#include "input_clock.h"
/*****************************************************************************
* Private input fields
*****************************************************************************/
...
...
@@ -355,20 +357,6 @@ void input_EsOutChangeState( es_out_t * );
void
input_EsOutChangePosition
(
es_out_t
*
);
bool
input_EsOutDecodersEmpty
(
es_out_t
*
);
/* clock.c */
typedef
struct
input_clock_t
input_clock_t
;
input_clock_t
*
input_clock_New
(
bool
b_master
,
int
i_cr_average
,
int
i_rate
);
void
input_clock_Delete
(
input_clock_t
*
);
void
input_clock_SetPCR
(
input_clock_t
*
,
vlc_object_t
*
p_log
,
bool
b_can_pace_control
,
mtime_t
i_clock
,
mtime_t
i_system
);
void
input_clock_ResetPCR
(
input_clock_t
*
);
mtime_t
input_clock_GetTS
(
input_clock_t
*
,
mtime_t
i_pts_delay
,
mtime_t
);
void
input_clock_SetRate
(
input_clock_t
*
cl
,
int
i_rate
);
void
input_clock_SetMaster
(
input_clock_t
*
cl
,
bool
b_master
);
mtime_t
input_clock_GetWakeup
(
input_clock_t
*
cl
);
/* Subtitles */
char
**
subtitles_Detect
(
input_thread_t
*
,
char
*
path
,
const
char
*
fname
);
int
subtitles_Filter
(
const
char
*
);
...
...
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