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
71becfcc
Commit
71becfcc
authored
Jul 15, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist: Use pl_Locked in vlc_playlist.h.
parent
f60a8c72
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
include/vlc_playlist.h
include/vlc_playlist.h
+6
-6
No files found.
include/vlc_playlist.h
View file @
71becfcc
...
@@ -281,12 +281,12 @@ VLC_EXPORT( void, __pl_Release, ( vlc_object_t * ) );
...
@@ -281,12 +281,12 @@ VLC_EXPORT( void, __pl_Release, ( vlc_object_t * ) );
#define pl_Release(a) __pl_Release( VLC_OBJECT(a) )
#define pl_Release(a) __pl_Release( VLC_OBJECT(a) )
/* Playlist control */
/* Playlist control */
#define playlist_Play(p) playlist_Control(p,PLAYLIST_PLAY,
false
)
#define playlist_Play(p) playlist_Control(p,PLAYLIST_PLAY,
pl_Unlocked
)
#define playlist_Pause(p) playlist_Control(p,PLAYLIST_PAUSE,
false
)
#define playlist_Pause(p) playlist_Control(p,PLAYLIST_PAUSE,
pl_Unlocked
)
#define playlist_Stop(p) playlist_Control(p,PLAYLIST_STOP,
false
)
#define playlist_Stop(p) playlist_Control(p,PLAYLIST_STOP,
pl_Unlocked
)
#define playlist_Next(p) playlist_Control(p,PLAYLIST_SKIP,
false
, 1)
#define playlist_Next(p) playlist_Control(p,PLAYLIST_SKIP,
pl_Unlocked
, 1)
#define playlist_Prev(p) playlist_Control(p,PLAYLIST_SKIP,
false
, -1)
#define playlist_Prev(p) playlist_Control(p,PLAYLIST_SKIP,
pl_Unlocked
, -1)
#define playlist_Skip(p,i) playlist_Control(p,PLAYLIST_SKIP,
false
, i)
#define playlist_Skip(p,i) playlist_Control(p,PLAYLIST_SKIP,
pl_Unlocked
, i)
/**
/**
* Do a playlist action.
* Do a playlist action.
...
...
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