Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
1ae081be
Commit
1ae081be
authored
Feb 11, 2007
by
Filippo Carone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist_ItemGetByInputId now included in libvlc
parent
bd205274
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
3 deletions
+6
-3
include/vlc_playlist.h
include/vlc_playlist.h
+2
-1
include/vlc_symbols.h
include/vlc_symbols.h
+3
-0
src/libvlc.sym
src/libvlc.sym
+1
-0
src/playlist/playlist_internal.h
src/playlist/playlist_internal.h
+0
-2
No files found.
include/vlc_playlist.h
View file @
1ae081be
...
...
@@ -382,8 +382,9 @@ playlist_item_t *playlist_ItemFindFromInputAndRoot( playlist_t *p_playlist,
vlc_bool_t
);
/********************************** Item search *************************/
VLC_EXPORT
(
playlist_item_t
*
,
playlist_ItemGetById
,
(
playlist_t
*
,
int
,
vlc_bool_t
)
);
VLC_EXPORT
(
playlist_item_t
*
,
playlist_ItemGetById
,
(
playlist_t
*
,
int
,
vlc_bool_t
)
);
VLC_EXPORT
(
playlist_item_t
*
,
playlist_ItemGetByInput
,
(
playlist_t
*
,
input_item_t
*
,
vlc_bool_t
)
);
VLC_EXPORT
(
playlist_item_t
*
,
playlist_ItemGetByInputId
,
(
playlist_t
*
,
int
,
playlist_item_t
*
)
);
VLC_EXPORT
(
int
,
playlist_LiveSearchUpdate
,
(
playlist_t
*
,
playlist_item_t
*
,
const
char
*
)
);
...
...
include/vlc_symbols.h
View file @
1ae081be
...
...
@@ -245,6 +245,7 @@ struct module_symbols_t
playlist_item_t
*
(
*
playlist_ItemToNode_inner
)
(
playlist_t
*
,
playlist_item_t
*
,
vlc_bool_t
);
playlist_item_t
*
(
*
playlist_ItemGetById_inner
)
(
playlist_t
*
,
int
,
vlc_bool_t
);
playlist_item_t
*
(
*
playlist_ItemGetByInput_inner
)
(
playlist_t
*
,
input_item_t
*
,
vlc_bool_t
);
playlist_item_t
*
(
*
playlist_ItemGetByInputId_inner
)
(
playlist_t
*
,
int
,
playlist_item_t
*
);
int
(
*
playlist_RecursiveNodeSort_inner
)
(
playlist_t
*
,
playlist_item_t
*
,
int
,
int
);
int
(
*
playlist_Export_inner
)
(
playlist_t
*
p_playlist
,
const
char
*
psz_name
,
playlist_item_t
*
p_export_root
,
const
char
*
psz_type
);
spu_t
*
(
*
__spu_Create_inner
)
(
vlc_object_t
*
);
...
...
@@ -681,6 +682,7 @@ struct module_symbols_t
# define playlist_ItemToNode (p_symbols)->playlist_ItemToNode_inner
# define playlist_ItemGetById (p_symbols)->playlist_ItemGetById_inner
# define playlist_ItemGetByInput (p_symbols)->playlist_ItemGetByInput_inner
# define playlist_ItemGetByInputId (p_symbols)->playlist_ItemGetByInputId_inner
# define playlist_RecursiveNodeSort (p_symbols)->playlist_RecursiveNodeSort_inner
# define playlist_Export (p_symbols)->playlist_Export_inner
# define __spu_Create (p_symbols)->__spu_Create_inner
...
...
@@ -1120,6 +1122,7 @@ struct module_symbols_t
((p_symbols)->playlist_ItemToNode_inner) = playlist_ItemToNode; \
((p_symbols)->playlist_ItemGetById_inner) = playlist_ItemGetById; \
((p_symbols)->playlist_ItemGetByInput_inner) = playlist_ItemGetByInput; \
((p_symbols)->playlist_ItemGetByInputId_inner) = playlist_ItemGetByInputId; \
((p_symbols)->playlist_RecursiveNodeSort_inner) = playlist_RecursiveNodeSort; \
((p_symbols)->playlist_Export_inner) = playlist_Export; \
((p_symbols)->__spu_Create_inner) = __spu_Create; \
...
...
src/libvlc.sym
View file @
1ae081be
...
...
@@ -203,6 +203,7 @@ playlist_GetPreferredNode
playlist_IsServicesDiscoveryLoaded
playlist_ItemGetById
playlist_ItemGetByInput
playlist_ItemGetByInputId
__playlist_ItemNewFromInput
playlist_ItemNewWithType
playlist_ItemSetName
...
...
src/playlist/playlist_internal.h
View file @
1ae081be
...
...
@@ -110,8 +110,6 @@ playlist_item_t *playlist_GetLastLeaf( playlist_t *p_playlist,
int
playlist_DeleteFromItemId
(
playlist_t
*
,
int
);
int
playlist_ItemDelete
(
playlist_item_t
*
);
playlist_item_t
*
playlist_ItemGetByInputId
(
playlist_t
*
,
int
,
playlist_item_t
*
);
/**
* @}
*/
...
...
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