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
239fcbc3
Commit
239fcbc3
authored
Jun 05, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist: use input "state" variable instead of b_dead
parent
af922d5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
src/playlist/thread.c
src/playlist/thread.c
+7
-6
No files found.
src/playlist/thread.c
View file @
239fcbc3
...
@@ -442,10 +442,11 @@ static void LoopInput( playlist_t *p_playlist )
...
@@ -442,10 +442,11 @@ static void LoopInput( playlist_t *p_playlist )
input_Stop
(
p_input
);
input_Stop
(
p_input
);
}
}
#warning Unsynchronized access to *p_input flags...
switch
(
var_GetInteger
(
p_input
,
"state"
)
)
/* This input is dead. Remove it ! */
if
(
p_input
->
b_dead
)
{
{
case
END_S
:
case
ERROR_S
:
/* This input is dead. Remove it ! */
p_sys
->
p_input
=
NULL
;
p_sys
->
p_input
=
NULL
;
PL_DEBUG
(
"dead input"
);
PL_DEBUG
(
"dead input"
);
PL_UNLOCK
;
PL_UNLOCK
;
...
@@ -460,10 +461,10 @@ static void LoopInput( playlist_t *p_playlist )
...
@@ -460,10 +461,10 @@ static void LoopInput( playlist_t *p_playlist )
input_Close
(
p_input
);
input_Close
(
p_input
);
PL_LOCK
;
PL_LOCK
;
return
;
break
;
default:
vlc_cond_wait
(
&
p_sys
->
signal
,
&
p_sys
->
lock
);
}
}
vlc_cond_wait
(
&
p_sys
->
signal
,
&
p_sys
->
lock
);
}
}
static
bool
Next
(
playlist_t
*
p_playlist
)
static
bool
Next
(
playlist_t
*
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