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
cccf0927
Commit
cccf0927
authored
Jul 26, 2007
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few playlist_Control() calls. Thanks to AmiSyl in the forums.
parent
b76e48f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/control/http/rpn.c
modules/control/http/rpn.c
+4
-4
No files found.
modules/control/http/rpn.c
View file @
cccf0927
...
@@ -503,22 +503,22 @@ void E_(EvaluateRPN)( intf_thread_t *p_intf, mvar_t *vars,
...
@@ -503,22 +503,22 @@ void E_(EvaluateRPN)( intf_thread_t *p_intf, mvar_t *vars,
}
}
else
if
(
!
strcmp
(
s
,
"vlc_stop"
)
)
else
if
(
!
strcmp
(
s
,
"vlc_stop"
)
)
{
{
playlist_Control
(
p_sys
->
p_playlist
,
VLC_TRUE
,
PLAYLIST_STOP
);
playlist_Control
(
p_sys
->
p_playlist
,
PLAYLIST_STOP
,
VLC_TRUE
);
msg_Dbg
(
p_intf
,
"requested playlist stop"
);
msg_Dbg
(
p_intf
,
"requested playlist stop"
);
}
}
else
if
(
!
strcmp
(
s
,
"vlc_pause"
)
)
else
if
(
!
strcmp
(
s
,
"vlc_pause"
)
)
{
{
playlist_Control
(
p_sys
->
p_playlist
,
VLC_TRUE
,
PLAYLIST_PAUS
E
);
playlist_Control
(
p_sys
->
p_playlist
,
PLAYLIST_PAUSE
,
VLC_TRU
E
);
msg_Dbg
(
p_intf
,
"requested playlist pause"
);
msg_Dbg
(
p_intf
,
"requested playlist pause"
);
}
}
else
if
(
!
strcmp
(
s
,
"vlc_next"
)
)
else
if
(
!
strcmp
(
s
,
"vlc_next"
)
)
{
{
playlist_Control
(
p_sys
->
p_playlist
,
VLC_TRUE
,
PLAYLIST_SKIP
,
1
);
playlist_Control
(
p_sys
->
p_playlist
,
PLAYLIST_SKIP
,
VLC_TRUE
,
1
);
msg_Dbg
(
p_intf
,
"requested playlist next"
);
msg_Dbg
(
p_intf
,
"requested playlist next"
);
}
}
else
if
(
!
strcmp
(
s
,
"vlc_previous"
)
)
else
if
(
!
strcmp
(
s
,
"vlc_previous"
)
)
{
{
playlist_Control
(
p_sys
->
p_playlist
,
VLC_TRUE
,
PLAYLIST_SKIP
,
-
1
);
playlist_Control
(
p_sys
->
p_playlist
,
PLAYLIST_SKIP
,
VLC_TRUE
,
-
1
);
msg_Dbg
(
p_intf
,
"requested playlist previous"
);
msg_Dbg
(
p_intf
,
"requested playlist previous"
);
}
}
else
if
(
!
strcmp
(
s
,
"vlc_seek"
)
)
else
if
(
!
strcmp
(
s
,
"vlc_seek"
)
)
...
...
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