Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
5426d426
Commit
5426d426
authored
Apr 16, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: use STREAM_CAN_PAUSE and STREAM_CAN_CONTROL_PACE
parent
cca4ec23
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
14 deletions
+21
-14
src/input/input.c
src/input/input.c
+21
-14
No files found.
src/input/input.c
View file @
5426d426
...
...
@@ -2474,8 +2474,6 @@ static int InputSourceInit( input_thread_t *p_input,
/* Get infos from access */
if
(
!
p_input
->
b_preparsing
)
{
bool
b_can_seek
;
in
->
b_title_demux
=
false
;
if
(
access_Control
(
p_access
,
ACCESS_GET_TITLE_INFO
,
&
in
->
title
,
&
in
->
i_title
,
...
...
@@ -2484,18 +2482,6 @@ static int InputSourceInit( input_thread_t *p_input,
{
TAB_INIT
(
in
->
i_title
,
in
->
title
);
}
access_Control
(
p_access
,
ACCESS_CAN_CONTROL_PACE
,
&
in
->
b_can_pace_control
);
in
->
b_can_rate_control
=
in
->
b_can_pace_control
;
in
->
b_rescale_ts
=
true
;
access_Control
(
p_access
,
ACCESS_CAN_PAUSE
,
&
in
->
b_can_pause
);
var_SetBool
(
p_input
,
"can-pause"
,
in
->
b_can_pause
||
!
in
->
b_can_pace_control
);
/* XXX temporary because of es_out_timeshift*/
var_SetBool
(
p_input
,
"can-rate"
,
!
in
->
b_can_pace_control
||
in
->
b_can_rate_control
);
/* XXX temporary because of es_out_timeshift*/
var_SetBool
(
p_input
,
"can-rewind"
,
!
in
->
b_rescale_ts
&&
!
in
->
b_can_pace_control
);
access_Control
(
p_access
,
ACCESS_CAN_SEEK
,
&
b_can_seek
);
var_SetBool
(
p_input
,
"can-seek"
,
b_can_seek
);
access_Control
(
p_access
,
ACCESS_GET_PTS_DELAY
,
&
i_pts_delay
);
}
...
...
@@ -2568,6 +2554,27 @@ static int InputSourceInit( input_thread_t *p_input,
var_GetBool
(
p_input
,
"input-record-native"
)
);
free
(
psz_stream_filter
);
if
(
!
p_input
->
b_preparsing
)
{
bool
b
;
stream_Control
(
in
->
p_stream
,
STREAM_CAN_CONTROL_PACE
,
&
in
->
b_can_pace_control
);
in
->
b_can_rate_control
=
in
->
b_can_pace_control
;
in
->
b_rescale_ts
=
true
;
stream_Control
(
in
->
p_stream
,
STREAM_CAN_PAUSE
,
&
in
->
b_can_pause
);
var_SetBool
(
p_input
,
"can-pause"
,
in
->
b_can_pause
||
!
in
->
b_can_pace_control
);
/* XXX temporary because of es_out_timeshift*/
var_SetBool
(
p_input
,
"can-rate"
,
!
in
->
b_can_pace_control
||
in
->
b_can_rate_control
);
/* XXX temporary because of es_out_timeshift*/
var_SetBool
(
p_input
,
"can-rewind"
,
!
in
->
b_rescale_ts
&&
!
in
->
b_can_pace_control
);
stream_Control
(
in
->
p_stream
,
STREAM_CAN_SEEK
,
&
b
);
var_SetBool
(
p_input
,
"can-seek"
,
b
);
}
in
->
p_demux
=
demux_New
(
p_input
,
p_input
,
psz_access
,
psz_demux
,
/* Take access/stream redirections into account: */
in
->
p_stream
->
psz_path
?
in
->
p_stream
->
psz_path
:
psz_path
,
...
...
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