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
f137ba51
Commit
f137ba51
authored
Nov 13, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow using es_out timeshift pause support.
parent
7e1b9f44
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
32 deletions
+38
-32
src/input/input.c
src/input/input.c
+38
-32
No files found.
src/input/input.c
View file @
f137ba51
...
@@ -490,7 +490,7 @@ void input_StopThread( input_thread_t *p_input )
...
@@ -490,7 +490,7 @@ void input_StopThread( input_thread_t *p_input )
input_ControlPush
(
p_input
,
INPUT_CONTROL_SET_DIE
,
NULL
);
input_ControlPush
(
p_input
,
INPUT_CONTROL_SET_DIE
,
NULL
);
}
}
sout_instance_t
*
input_DetachSout
(
input_thread_t
*
p_input
)
sout_instance_t
*
input_DetachSout
(
input_thread_t
*
p_input
)
{
{
assert
(
p_input
->
b_dead
);
assert
(
p_input
->
b_dead
);
sout_instance_t
*
p_sout
=
p_input
->
p
->
p_sout
;
sout_instance_t
*
p_sout
=
p_input
->
p
->
p_sout
;
...
@@ -504,7 +504,7 @@ sout_instance_t * input_DetachSout( input_thread_t *p_input )
...
@@ -504,7 +504,7 @@ sout_instance_t * input_DetachSout( input_thread_t *p_input )
* This is the "normal" thread that spawns the input processing chain,
* This is the "normal" thread that spawns the input processing chain,
* reads the stream, cleans up and waits
* reads the stream, cleans up and waits
*****************************************************************************/
*****************************************************************************/
static
void
*
Run
(
vlc_object_t
*
p_this
)
static
void
*
Run
(
vlc_object_t
*
p_this
)
{
{
input_thread_t
*
p_input
=
(
input_thread_t
*
)
p_this
;
input_thread_t
*
p_input
=
(
input_thread_t
*
)
p_this
;
const
int
canc
=
vlc_savecancel
();
const
int
canc
=
vlc_savecancel
();
...
@@ -536,7 +536,7 @@ exit:
...
@@ -536,7 +536,7 @@ exit:
* This is the "just forget me" thread that spawns the input processing chain,
* This is the "just forget me" thread that spawns the input processing chain,
* reads the stream, cleans up and releases memory
* reads the stream, cleans up and releases memory
*****************************************************************************/
*****************************************************************************/
static
void
*
RunAndDestroy
(
vlc_object_t
*
p_this
)
static
void
*
RunAndDestroy
(
vlc_object_t
*
p_this
)
{
{
input_thread_t
*
p_input
=
(
input_thread_t
*
)
p_this
;
input_thread_t
*
p_input
=
(
input_thread_t
*
)
p_this
;
const
int
canc
=
vlc_savecancel
();
const
int
canc
=
vlc_savecancel
();
...
@@ -1498,20 +1498,23 @@ static void ControlReduce( input_thread_t *p_input )
...
@@ -1498,20 +1498,23 @@ static void ControlReduce( input_thread_t *p_input )
/* Pause input */
/* Pause input */
static
void
ControlPause
(
input_thread_t
*
p_input
,
mtime_t
i_control_date
)
static
void
ControlPause
(
input_thread_t
*
p_input
,
mtime_t
i_control_date
)
{
{
int
i_ret
;
int
i_ret
=
VLC_SUCCESS
;
int
i_state
;
int
i_state
=
PAUSE_S
;
if
(
p_input
->
p
->
input
.
p_access
)
i_ret
=
access_Control
(
p_input
->
p
->
input
.
p_access
,
ACCESS_SET_PAUSE_STATE
,
true
);
else
i_ret
=
demux_Control
(
p_input
->
p
->
input
.
p_demux
,
DEMUX_SET_PAUSE_STATE
,
true
);
i_state
=
PAUSE_S
;
if
(
p_input
->
p
->
b_can_pause
)
if
(
i_ret
)
{
{
msg_Warn
(
p_input
,
"cannot set pause state"
);
if
(
p_input
->
p
->
input
.
p_access
)
i_state
=
p_input
->
i_state
;
i_ret
=
access_Control
(
p_input
->
p
->
input
.
p_access
,
ACCESS_SET_PAUSE_STATE
,
true
);
else
i_ret
=
demux_Control
(
p_input
->
p
->
input
.
p_demux
,
DEMUX_SET_PAUSE_STATE
,
true
);
if
(
i_ret
)
{
msg_Warn
(
p_input
,
"cannot set pause state"
);
i_state
=
p_input
->
i_state
;
}
}
}
/* Switch to new state */
/* Switch to new state */
...
@@ -1519,25 +1522,28 @@ static void ControlPause( input_thread_t *p_input, mtime_t i_control_date )
...
@@ -1519,25 +1522,28 @@ static void ControlPause( input_thread_t *p_input, mtime_t i_control_date )
/* */
/* */
if
(
!
i_ret
)
if
(
!
i_ret
)
es_out_SetPauseState
(
p_input
->
p
->
p_es_out
,
tru
e
,
true
,
i_control_date
);
es_out_SetPauseState
(
p_input
->
p
->
p_es_out
,
p_input
->
p
->
b_can_paus
e
,
true
,
i_control_date
);
}
}
static
void
ControlUnpause
(
input_thread_t
*
p_input
,
mtime_t
i_control_date
)
static
void
ControlUnpause
(
input_thread_t
*
p_input
,
mtime_t
i_control_date
)
{
{
int
i_ret
;
int
i_ret
=
VLC_SUCCESS
;
if
(
p_input
->
p
->
input
.
p_access
)
i_ret
=
access_Control
(
p_input
->
p
->
input
.
p_access
,
ACCESS_SET_PAUSE_STATE
,
false
);
else
i_ret
=
demux_Control
(
p_input
->
p
->
input
.
p_demux
,
DEMUX_SET_PAUSE_STATE
,
false
);
if
(
i_ret
)
if
(
p_input
->
p
->
b_can_pause
)
{
{
/* FIXME What to do ? */
if
(
p_input
->
p
->
input
.
p_access
)
msg_Warn
(
p_input
,
"cannot unset pause -> EOF"
);
i_ret
=
access_Control
(
p_input
->
p
->
input
.
p_access
,
vlc_mutex_unlock
(
&
p_input
->
p
->
lock_control
);
ACCESS_SET_PAUSE_STATE
,
false
);
input_ControlPush
(
p_input
,
INPUT_CONTROL_SET_DIE
,
NULL
);
else
vlc_mutex_lock
(
&
p_input
->
p
->
lock_control
);
i_ret
=
demux_Control
(
p_input
->
p
->
input
.
p_demux
,
DEMUX_SET_PAUSE_STATE
,
false
);
if
(
i_ret
)
{
/* FIXME What to do ? */
msg_Warn
(
p_input
,
"cannot unset pause -> EOF"
);
vlc_mutex_unlock
(
&
p_input
->
p
->
lock_control
);
input_ControlPush
(
p_input
,
INPUT_CONTROL_SET_DIE
,
NULL
);
vlc_mutex_lock
(
&
p_input
->
p
->
lock_control
);
}
}
}
/* Switch to play */
/* Switch to play */
...
@@ -1676,14 +1682,14 @@ static bool Control( input_thread_t *p_input, int i_type,
...
@@ -1676,14 +1682,14 @@ static bool Control( input_thread_t *p_input, int i_type,
b_force_update
=
true
;
b_force_update
=
true
;
}
}
else
if
(
val
.
i_int
==
PAUSE_S
&&
p_input
->
i_state
==
PLAYING_S
&&
else
if
(
val
.
i_int
==
PAUSE_S
&&
p_input
->
i_state
==
PLAYING_S
/*
&&
p_input
->
p
->
b_can_pause
)
p_input->p->b_can_pause
*/
)
{
{
ControlPause
(
p_input
,
i_control_date
);
ControlPause
(
p_input
,
i_control_date
);
b_force_update
=
true
;
b_force_update
=
true
;
}
}
else
if
(
val
.
i_int
==
PAUSE_S
&&
!
p_input
->
p
->
b_can_pause
)
else
if
(
val
.
i_int
==
PAUSE_S
&&
!
p_input
->
p
->
b_can_pause
&&
0
)
{
{
b_force_update
=
true
;
b_force_update
=
true
;
...
...
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