Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
4e03ca06
Commit
4e03ca06
authored
Oct 19, 2006
by
zorglub
Browse files
Reset playlist status to STOPPED after stop
parent
266fb28c
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/Makefile.am
View file @
4e03ca06
...
...
@@ -61,6 +61,7 @@ HEADERS_include = \
../include/variables.h
\
../include/video_output.h
\
../include/vlc_access.h
\
../include/vlc_arrays.h
\
../include/vlc_acl.h
\
../include/vlc_bits.h
\
../include/vlc_block.h
\
...
...
src/playlist/engine.c
View file @
4e03ca06
...
...
@@ -225,7 +225,7 @@ void playlist_MainLoop( playlist_t *p_playlist )
{
playlist_item_t
*
p_item
=
NULL
;
vlc_bool_t
b_playexit
=
var_GetBool
(
p_playlist
,
"play-and-exit"
);
PL_LOCK
PL_LOCK
;
/* First, check if we have something to do */
/* FIXME : this can be called several times */
...
...
@@ -348,6 +348,7 @@ void playlist_MainLoop( playlist_t *p_playlist )
}
else
{
p_playlist
->
status
.
i_status
=
PLAYLIST_STOPPED
;
if
(
p_playlist
->
status
.
p_item
&&
p_playlist
->
status
.
p_item
->
i_flags
&
PLAYLIST_REMOVE_FLAG
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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