Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
5bce8e07
Commit
5bce8e07
authored
Sep 30, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
De-inline playlist_Signal
parent
9cb82b16
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
include/vlc_playlist.h
include/vlc_playlist.h
+1
-1
src/libvlccore.sym
src/libvlccore.sym
+1
-0
src/playlist/control.c
src/playlist/control.c
+6
-0
No files found.
include/vlc_playlist.h
View file @
5bce8e07
...
...
@@ -390,7 +390,7 @@ static inline input_thread_t * __pl_CurrentInput( vlc_object_t * p_this )
#define playlist_CurrentSize( pl ) pl->current.i_size
/** Ask the playlist to do some work */
#define playlist_Signal( p_playlist ) vlc_object_signal( p_playlist )
VLC_EXPORT
(
void
,
playlist_Signal
,
(
playlist_t
*
)
);
/** @} */
# ifdef __cplusplus
...
...
src/libvlccore.sym
View file @
5bce8e07
...
...
@@ -308,6 +308,7 @@ playlist_PreparseEnqueueItem
playlist_RecursiveNodeSort
playlist_ServicesDiscoveryAdd
playlist_ServicesDiscoveryRemove
playlist_Signal
playlist_Status
playlist_TreeMove
__pl_Hold
...
...
src/playlist/control.c
View file @
5bce8e07
...
...
@@ -67,6 +67,12 @@ void __pl_Release( vlc_object_t *p_this )
vlc_object_release
(
pl
);
}
void
playlist_Signal
(
playlist_t
*
p_playlist
)
{
/* TODO: assert playlist lock? */
vlc_object_signal
(
p_playlist
);
}
int
playlist_Control
(
playlist_t
*
p_playlist
,
int
i_query
,
bool
b_locked
,
...
)
{
...
...
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