Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
253ac451
Commit
253ac451
authored
Sep 07, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed the need to msleep to handle input pause.
parent
9ea2d78d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
16 deletions
+24
-16
src/input/input.c
src/input/input.c
+21
-14
src/input/input_internal.h
src/input/input_internal.h
+3
-2
No files found.
src/input/input.c
View file @
253ac451
...
...
@@ -64,7 +64,7 @@ static void WaitDie ( input_thread_t *p_input );
static
void
End
(
input_thread_t
*
p_input
);
static
void
MainLoop
(
input_thread_t
*
p_input
);
static
inline
int
ControlPopNoLock
(
input_thread_t
*
,
int
*
,
vlc_value_t
*
);
static
inline
int
ControlPopNoLock
(
input_thread_t
*
,
int
*
,
vlc_value_t
*
,
mtime_t
i_deadline
);
static
void
ControlReduce
(
input_thread_t
*
);
static
bool
Control
(
input_thread_t
*
,
int
,
vlc_value_t
);
...
...
@@ -223,6 +223,7 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
/* Init control buffer */
vlc_mutex_init
(
&
p_input
->
p
->
lock_control
);
vlc_cond_init
(
&
p_input
->
p
->
wait_control
);
p_input
->
p
->
i_control
=
0
;
/* Parse input options */
...
...
@@ -337,6 +338,7 @@ static void Destructor( input_thread_t * p_input )
vlc_mutex_destroy
(
&
p_input
->
p
->
counters
.
counters_lock
);
vlc_cond_destroy
(
&
p_input
->
p
->
wait_control
);
vlc_mutex_destroy
(
&
p_input
->
p
->
lock_control
);
free
(
p_input
->
p
);
}
...
...
@@ -730,23 +732,22 @@ static void MainLoop( input_thread_t *p_input )
int
i_type
;
vlc_value_t
val
;
mtime_t
i_current
;
mtime_t
i_deadline
;
/* Do the read */
/* Demux data */
b_force_update
=
false
;
if
(
p_input
->
i_state
!=
PAUSE_S
)
{
MainLoopDemux
(
p_input
,
&
b_force_update
,
&
i_start_mdate
);
}
else
{
/* Small wait */
b_force_update
=
false
;
msleep
(
10
*
1000
);
}
/* */
i_deadline
=
0
;
if
(
p_input
->
i_state
==
PAUSE_S
)
i_deadline
=
__MIN
(
i_intf_update
,
i_statistic_update
);
/* Handle control */
vlc_mutex_lock
(
&
p_input
->
p
->
lock_control
);
ControlReduce
(
p_input
);
while
(
!
ControlPopNoLock
(
p_input
,
&
i_type
,
&
val
)
)
while
(
!
ControlPopNoLock
(
p_input
,
&
i_type
,
&
val
,
i_deadline
)
)
{
msg_Dbg
(
p_input
,
"control type=%d"
,
i_type
);
if
(
Control
(
p_input
,
i_type
,
val
)
)
...
...
@@ -1396,11 +1397,17 @@ static void End( input_thread_t * p_input )
* Control
*****************************************************************************/
static
inline
int
ControlPopNoLock
(
input_thread_t
*
p_input
,
int
*
pi_type
,
vlc_value_t
*
p_val
)
int
*
pi_type
,
vlc_value_t
*
p_val
,
mtime_t
i_deadline
)
{
if
(
p_input
->
p
->
i_control
<=
0
)
while
(
p_input
->
p
->
i_control
<=
0
)
{
return
VLC_EGENERIC
;
if
(
i_deadline
<=
0
)
return
VLC_EGENERIC
;
if
(
vlc_cond_timedwait
(
&
p_input
->
p
->
wait_control
,
&
p_input
->
p
->
lock_control
,
i_deadline
)
)
return
VLC_EGENERIC
;
}
*
pi_type
=
p_input
->
p
->
control
[
0
].
i_type
;
...
...
src/input/input_internal.h
View file @
253ac451
...
...
@@ -147,6 +147,7 @@ struct input_thread_private_t
/* Buffer of pending actions */
vlc_mutex_t
lock_control
;
vlc_cond_t
wait_control
;
int
i_control
;
struct
{
...
...
@@ -211,8 +212,7 @@ static inline void input_ControlPush( input_thread_t *p_input,
p_input
->
p
->
control
[
0
].
i_type
=
i_type
;
memset
(
&
p_input
->
p
->
control
[
0
].
val
,
0
,
sizeof
(
vlc_value_t
)
);
}
else
if
(
p_input
->
p
->
i_control
>=
INPUT_CONTROL_FIFO_SIZE
)
else
if
(
p_input
->
p
->
i_control
>=
INPUT_CONTROL_FIFO_SIZE
)
{
msg_Err
(
p_input
,
"input control fifo overflow, trashing type=%d"
,
i_type
);
...
...
@@ -228,6 +228,7 @@ static inline void input_ControlPush( input_thread_t *p_input,
p_input
->
p
->
i_control
++
;
}
vlc_cond_signal
(
&
p_input
->
p
->
wait_control
);
vlc_mutex_unlock
(
&
p_input
->
p
->
lock_control
);
}
...
...
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