Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
77dbb1a4
Commit
77dbb1a4
authored
Sep 24, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed all clock dependencies on input.
parent
b72b3e53
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
8 deletions
+11
-8
src/input/clock.c
src/input/clock.c
+5
-5
src/input/es_out.c
src/input/es_out.c
+4
-2
src/input/input_internal.h
src/input/input_internal.h
+2
-1
No files found.
src/input/clock.c
View file @
77dbb1a4
...
...
@@ -192,10 +192,10 @@ void input_clock_Delete( input_clock_t *cl )
* i_ck_system: date in system clock
*****************************************************************************/
void
input_clock_SetPCR
(
input_clock_t
*
cl
,
input_thread_t
*
p_input
,
vlc_object_t
*
p_log
,
bool
b_can_pace_control
,
mtime_t
i_ck_stream
,
mtime_t
i_ck_system
)
{
const
bool
b_synchronize
=
p_input
->
b_can_pace_control
&&
cl
->
b_master
;
const
bool
b_synchronize
=
b_can_pace_control
&&
cl
->
b_master
;
bool
b_reset_reference
=
false
;
if
(
(
!
cl
->
b_has_reference
)
||
...
...
@@ -213,11 +213,11 @@ void input_clock_SetPCR( input_clock_t *cl,
/* Stream discontinuity, for which we haven't received a
* warning from the stream control facilities (dd-edited
* stream ?). */
msg_Warn
(
p_
input
,
"clock gap, unexpected stream discontinuity"
);
msg_Warn
(
p_
log
,
"clock gap, unexpected stream discontinuity"
);
cl
->
last_pts
=
0
;
/* */
msg_Warn
(
p_
input
,
"feeding synchro with a new reference point trying to recover from clock gap"
);
msg_Warn
(
p_
log
,
"feeding synchro with a new reference point trying to recover from clock gap"
);
b_reset_reference
=
true
;
}
if
(
b_reset_reference
)
...
...
@@ -294,7 +294,7 @@ void input_clock_SetMaster( input_clock_t *cl, bool b_master )
/*****************************************************************************
* input_clock_GetWakeup
*****************************************************************************/
mtime_t
input_clock_GetWakeup
(
input_clock_t
*
cl
,
input_thread_t
*
p_input
)
mtime_t
input_clock_GetWakeup
(
input_clock_t
*
cl
)
{
/* Not synchronized, we cannot wait */
if
(
!
cl
->
b_has_reference
)
...
...
src/input/es_out.c
View file @
77dbb1a4
...
...
@@ -351,7 +351,8 @@ es_out_id_t *input_EsOutGetFromID( es_out_t *out, int i_id )
mtime_t
input_EsOutGetWakeup
(
es_out_t
*
out
)
{
es_out_sys_t
*
p_sys
=
out
->
p_sys
;
es_out_sys_t
*
p_sys
=
out
->
p_sys
;
input_thread_t
*
p_input
=
p_sys
->
p_input
;
if
(
!
p_sys
->
p_pgrm
)
return
0
;
...
...
@@ -1916,7 +1917,8 @@ static int EsOutControl( es_out_t *out, int i_query, va_list args )
i_pcr
=
(
int64_t
)
va_arg
(
args
,
int64_t
);
/* search program
* TODO do not use mdate() but proper stream acquisition date */
input_clock_SetPCR
(
p_pgrm
->
p_clock
,
p_sys
->
p_input
,
i_pcr
,
mdate
()
);
input_clock_SetPCR
(
p_pgrm
->
p_clock
,
VLC_OBJECT
(
p_sys
->
p_input
),
p_sys
->
p_input
->
b_can_pace_control
,
i_pcr
,
mdate
()
);
return
VLC_SUCCESS
;
}
...
...
src/input/input_internal.h
View file @
77dbb1a4
...
...
@@ -361,7 +361,8 @@ 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
*
,
input_thread_t
*
,
mtime_t
i_clock
,
mtime_t
i_system
);
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
);
...
...
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