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
9f64a797
Commit
9f64a797
authored
Dec 06, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix behaviour if repeat is enabled at startup
parent
9d8c9770
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/playlist/playlist.c
src/playlist/playlist.c
+3
-3
No files found.
src/playlist/playlist.c
View file @
9f64a797
...
@@ -201,7 +201,6 @@ playlist_t * __playlist_Create ( vlc_object_t *p_parent )
...
@@ -201,7 +201,6 @@ playlist_t * __playlist_Create ( vlc_object_t *p_parent )
p_playlist
->
p_preparse
->
pp_waiting
=
NULL
;
p_playlist
->
p_preparse
->
pp_waiting
=
NULL
;
// Interaction
// Interaction
p_playlist
->
b_manage_interaction
=
VLC_FALSE
;
p_playlist
->
p_interaction
=
NULL
;
p_playlist
->
p_interaction
=
NULL
;
vlc_object_attach
(
p_playlist
->
p_preparse
,
p_playlist
);
vlc_object_attach
(
p_playlist
->
p_preparse
,
p_playlist
);
...
@@ -584,7 +583,7 @@ static void RunThread ( playlist_t *p_playlist )
...
@@ -584,7 +583,7 @@ static void RunThread ( playlist_t *p_playlist )
while
(
!
p_playlist
->
b_die
)
while
(
!
p_playlist
->
b_die
)
{
{
if
(
p_playlist
->
b_manage
_interaction
)
if
(
p_playlist
->
p
_interaction
)
{
{
intf_InteractionManage
(
p_playlist
);
intf_InteractionManage
(
p_playlist
);
}
}
...
@@ -882,7 +881,8 @@ static playlist_item_t * NextItem( playlist_t *p_playlist )
...
@@ -882,7 +881,8 @@ static playlist_item_t * NextItem( playlist_t *p_playlist )
}
}
/* Repeat and play/stop */
/* Repeat and play/stop */
if
(
!
p_playlist
->
request
.
b_request
&&
b_repeat
==
VLC_TRUE
)
if
(
!
p_playlist
->
request
.
b_request
&&
b_repeat
==
VLC_TRUE
&&
p_playlist
->
status
.
p_item
)
{
{
msg_Dbg
(
p_playlist
,
"repeating item"
);
msg_Dbg
(
p_playlist
,
"repeating item"
);
return
p_playlist
->
status
.
p_item
;
return
p_playlist
->
status
.
p_item
;
...
...
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