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
81ccc88f
Commit
81ccc88f
authored
Dec 23, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify a bit playlist loop.
parent
583d3c85
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
54 deletions
+32
-54
src/playlist/thread.c
src/playlist/thread.c
+32
-54
No files found.
src/playlist/thread.c
View file @
81ccc88f
...
@@ -71,7 +71,7 @@ void playlist_Activate( playlist_t *p_playlist )
...
@@ -71,7 +71,7 @@ void playlist_Activate( playlist_t *p_playlist )
{
{
msg_Err
(
p_playlist
,
"cannot spawn playlist thread"
);
msg_Err
(
p_playlist
,
"cannot spawn playlist thread"
);
}
}
msg_
Err
(
p_playlist
,
"Activated"
);
msg_
Dbg
(
p_playlist
,
"Activated"
);
}
}
void
playlist_Deactivate
(
playlist_t
*
p_playlist
)
void
playlist_Deactivate
(
playlist_t
*
p_playlist
)
...
@@ -79,9 +79,11 @@ void playlist_Deactivate( playlist_t *p_playlist )
...
@@ -79,9 +79,11 @@ void playlist_Deactivate( playlist_t *p_playlist )
/* */
/* */
playlist_private_t
*
p_sys
=
pl_priv
(
p_playlist
);
playlist_private_t
*
p_sys
=
pl_priv
(
p_playlist
);
msg_Err
(
p_playlist
,
"Deactivate"
);
msg_Dbg
(
p_playlist
,
"Deactivate"
);
vlc_object_kill
(
p_playlist
);
vlc_object_kill
(
p_playlist
);
vlc_thread_join
(
p_playlist
);
vlc_thread_join
(
p_playlist
);
assert
(
!
p_sys
->
p_input
);
if
(
p_sys
->
p_preparser
)
if
(
p_sys
->
p_preparser
)
playlist_preparser_Delete
(
p_sys
->
p_preparser
);
playlist_preparser_Delete
(
p_sys
->
p_preparser
);
...
@@ -125,7 +127,7 @@ void playlist_Deactivate( playlist_t *p_playlist )
...
@@ -125,7 +127,7 @@ void playlist_Deactivate( playlist_t *p_playlist )
p_sys
->
p_sout
=
NULL
;
p_sys
->
p_sout
=
NULL
;
p_sys
->
p_preparser
=
NULL
;
p_sys
->
p_preparser
=
NULL
;
p_sys
->
p_fetcher
=
NULL
;
p_sys
->
p_fetcher
=
NULL
;
msg_
Err
(
p_playlist
,
"Deactivated"
);
msg_
Dbg
(
p_playlist
,
"Deactivated"
);
}
}
/* */
/* */
...
@@ -149,42 +151,6 @@ static int InputEvent( vlc_object_t *p_this, char const *psz_cmd,
...
@@ -149,42 +151,6 @@ static int InputEvent( vlc_object_t *p_this, char const *psz_cmd,
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
/* Internals */
static
void
playlist_release_current_input
(
playlist_t
*
p_playlist
)
{
PL_ASSERT_LOCKED
;
if
(
!
pl_priv
(
p_playlist
)
->
p_input
)
return
;
input_thread_t
*
p_input
=
pl_priv
(
p_playlist
)
->
p_input
;
var_DelCallback
(
p_input
,
"intf-event"
,
InputEvent
,
p_playlist
);
pl_priv
(
p_playlist
)
->
p_input
=
NULL
;
/* Release the playlist lock, because we may get stuck
* in vlc_object_release() for some time. */
PL_UNLOCK
;
vlc_thread_join
(
p_input
);
vlc_object_release
(
p_input
);
PL_LOCK
;
}
/* */
static
void
playlist_set_current_input
(
playlist_t
*
p_playlist
,
input_thread_t
*
p_input
)
{
PL_ASSERT_LOCKED
;
playlist_release_current_input
(
p_playlist
);
if
(
p_input
)
{
vlc_object_hold
(
p_input
);
pl_priv
(
p_playlist
)
->
p_input
=
p_input
;
var_AddCallback
(
p_input
,
"intf-event"
,
InputEvent
,
p_playlist
);
}
}
/**
/**
* Synchronise the current index of the playlist
* Synchronise the current index of the playlist
* to match the index of the current item.
* to match the index of the current item.
...
@@ -269,6 +235,8 @@ static int PlayItem( playlist_t *p_playlist, playlist_item_t *p_item )
...
@@ -269,6 +235,8 @@ static int PlayItem( playlist_t *p_playlist, playlist_item_t *p_item )
sout_instance_t
**
pp_sout
=
&
pl_priv
(
p_playlist
)
->
p_sout
;
sout_instance_t
**
pp_sout
=
&
pl_priv
(
p_playlist
)
->
p_sout
;
int
i_activity
=
var_GetInteger
(
p_playlist
,
"activity"
)
;
int
i_activity
=
var_GetInteger
(
p_playlist
,
"activity"
)
;
PL_ASSERT_LOCKED
;
msg_Dbg
(
p_playlist
,
"creating new input thread"
);
msg_Dbg
(
p_playlist
,
"creating new input thread"
);
p_input
->
i_nb_played
++
;
p_input
->
i_nb_played
++
;
...
@@ -279,10 +247,17 @@ static int PlayItem( playlist_t *p_playlist, playlist_item_t *p_item )
...
@@ -279,10 +247,17 @@ static int PlayItem( playlist_t *p_playlist, playlist_item_t *p_item )
var_SetInteger
(
p_playlist
,
"activity"
,
i_activity
+
var_SetInteger
(
p_playlist
,
"activity"
,
i_activity
+
DEFAULT_INPUT_ACTIVITY
);
DEFAULT_INPUT_ACTIVITY
);
input_thread_t
*
p_input_thread
=
assert
(
pl_priv
(
p_playlist
)
->
p_input
==
NULL
);
input_thread_t
*
p_input_thread
=
input_CreateThreadExtended
(
p_playlist
,
p_input
,
NULL
,
*
pp_sout
);
input_CreateThreadExtended
(
p_playlist
,
p_input
,
NULL
,
*
pp_sout
);
playlist_set_current_input
(
p_playlist
,
p_input_thread
);
vlc_object_release
(
p_input_thread
);
if
(
p_input_thread
)
{
pl_priv
(
p_playlist
)
->
p_input
=
p_input_thread
;
var_AddCallback
(
p_input_thread
,
"intf-event"
,
InputEvent
,
p_playlist
);
}
*
pp_sout
=
NULL
;
*
pp_sout
=
NULL
;
...
@@ -330,7 +305,7 @@ static int PlayItem( playlist_t *p_playlist, playlist_item_t *p_item )
...
@@ -330,7 +305,7 @@ static int PlayItem( playlist_t *p_playlist, playlist_item_t *p_item )
* \param p_playlist the playlist object
* \param p_playlist the playlist object
* \return nothing
* \return nothing
*/
*/
static
playlist_item_t
*
playlist_
NextItem
(
playlist_t
*
p_playlist
)
static
playlist_item_t
*
NextItem
(
playlist_t
*
p_playlist
)
{
{
playlist_item_t
*
p_new
=
NULL
;
playlist_item_t
*
p_new
=
NULL
;
int
i_skip
=
0
,
i
;
int
i_skip
=
0
,
i
;
...
@@ -485,7 +460,6 @@ static playlist_item_t * playlist_NextItem( playlist_t *p_playlist )
...
@@ -485,7 +460,6 @@ static playlist_item_t * playlist_NextItem( playlist_t *p_playlist )
return
p_new
;
return
p_new
;
}
}
/**
/**
* Main loop
* Main loop
*
*
...
@@ -532,7 +506,15 @@ check_input:
...
@@ -532,7 +506,15 @@ check_input:
*
pp_sout
=
input_DetachSout
(
p_input
);
*
pp_sout
=
input_DetachSout
(
p_input
);
/* Destroy input */
/* Destroy input */
playlist_release_current_input
(
p_playlist
);
var_DelCallback
(
p_input
,
"intf-event"
,
InputEvent
,
p_playlist
);
pl_priv
(
p_playlist
)
->
p_input
=
NULL
;
/* Release the playlist lock, because we may get stuck
* in vlc_object_release() for some time. */
PL_UNLOCK
;
vlc_thread_join
(
p_input
);
vlc_object_release
(
p_input
);
PL_LOCK
;
int
i_activity
=
var_GetInteger
(
p_playlist
,
"activity"
);
int
i_activity
=
var_GetInteger
(
p_playlist
,
"activity"
);
var_SetInteger
(
p_playlist
,
"activity"
,
var_SetInteger
(
p_playlist
,
"activity"
,
...
@@ -570,7 +552,7 @@ check_input:
...
@@ -570,7 +552,7 @@ check_input:
if
(
i_status
!=
PLAYLIST_STOPPED
)
if
(
i_status
!=
PLAYLIST_STOPPED
)
{
{
msg_Dbg
(
p_playlist
,
"starting new item"
);
msg_Dbg
(
p_playlist
,
"starting new item"
);
playlist_item_t
*
p_item
=
playlist_
NextItem
(
p_playlist
);
playlist_item_t
*
p_item
=
NextItem
(
p_playlist
);
if
(
p_item
==
NULL
)
if
(
p_item
==
NULL
)
{
{
...
@@ -601,18 +583,14 @@ check_input:
...
@@ -601,18 +583,14 @@ check_input:
static
void
*
Thread
(
vlc_object_t
*
p_this
)
static
void
*
Thread
(
vlc_object_t
*
p_this
)
{
{
playlist_t
*
p_playlist
=
(
playlist_t
*
)
p_this
;
playlist_t
*
p_playlist
=
(
playlist_t
*
)
p_this
;
int
canc
=
vlc_savecancel
();
int
canc
=
vlc_savecancel
();
vlc_object_lock
(
p_playlist
);
vlc_object_lock
(
p_playlist
);
while
(
vlc_object_alive
(
p_playlist
)
)
while
(
vlc_object_alive
(
p_playlist
)
||
pl_priv
(
p_playlist
)
->
p_input
)
{
{
Loop
(
p_playlist
);
Loop
(
p_playlist
);
/* The playlist lock has been unlocked, so we can't tell if
if
(
vlc_object_alive
(
p_playlist
)
)
* someone has killed us in the meantime. Check now. */
if
(
!
vlc_object_alive
(
p_playlist
)
&&
!
pl_priv
(
p_playlist
)
->
p_input
)
break
;
vlc_object_wait
(
p_playlist
);
vlc_object_wait
(
p_playlist
);
}
}
vlc_object_unlock
(
p_playlist
);
vlc_object_unlock
(
p_playlist
);
...
...
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