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
6b843acc
Commit
6b843acc
authored
Nov 22, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused -playlist_ItemSetName.
parent
ca94f210
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
25 deletions
+0
-25
include/vlc_playlist.h
include/vlc_playlist.h
+0
-3
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/playlist/item.c
src/playlist/item.c
+0
-21
No files found.
include/vlc_playlist.h
View file @
6b843acc
...
@@ -316,9 +316,6 @@ VLC_EXPORT( playlist_item_t* , playlist_ItemNewWithType, ( playlist_t *,const ch
...
@@ -316,9 +316,6 @@ VLC_EXPORT( playlist_item_t* , playlist_ItemNewWithType, ( playlist_t *,const ch
/*************************** Item deletion **************************/
/*************************** Item deletion **************************/
VLC_EXPORT
(
int
,
playlist_DeleteFromInput
,
(
playlist_t
*
,
int
,
bool
)
);
VLC_EXPORT
(
int
,
playlist_DeleteFromInput
,
(
playlist_t
*
,
int
,
bool
)
);
/*************************** Item fields accessors **************************/
VLC_EXPORT
(
int
,
playlist_ItemSetName
,
(
playlist_item_t
*
,
const
char
*
)
);
/******************** Item addition ********************/
/******************** Item addition ********************/
VLC_EXPORT
(
int
,
playlist_Add
,
(
playlist_t
*
,
const
char
*
,
const
char
*
,
int
,
int
,
bool
,
bool
)
);
VLC_EXPORT
(
int
,
playlist_Add
,
(
playlist_t
*
,
const
char
*
,
const
char
*
,
int
,
int
,
bool
,
bool
)
);
VLC_EXPORT
(
int
,
playlist_AddExt
,
(
playlist_t
*
,
const
char
*
,
const
char
*
,
int
,
int
,
mtime_t
,
const
char
*
const
*
,
int
,
bool
,
bool
)
);
VLC_EXPORT
(
int
,
playlist_AddExt
,
(
playlist_t
*
,
const
char
*
,
const
char
*
,
int
,
int
,
mtime_t
,
const
char
*
const
*
,
int
,
bool
,
bool
)
);
...
...
src/libvlccore.sym
View file @
6b843acc
...
@@ -294,7 +294,6 @@ playlist_ItemGetById
...
@@ -294,7 +294,6 @@ playlist_ItemGetById
playlist_ItemGetByInput
playlist_ItemGetByInput
playlist_ItemGetByInputId
playlist_ItemGetByInputId
playlist_ItemNewWithType
playlist_ItemNewWithType
playlist_ItemSetName
playlist_ItemToNode
playlist_ItemToNode
playlist_LiveSearchUpdate
playlist_LiveSearchUpdate
playlist_NodeAppend
playlist_NodeAppend
...
...
src/playlist/item.c
View file @
6b843acc
...
@@ -806,27 +806,6 @@ void playlist_SendAddNotify( playlist_t *p_playlist, int i_item_id,
...
@@ -806,27 +806,6 @@ void playlist_SendAddNotify( playlist_t *p_playlist, int i_item_id,
free
(
p_add
);
free
(
p_add
);
}
}
/*****************************************************************************
* Playlist item accessors
*****************************************************************************/
/**
* Set the name of a playlist item
*
* \param p_item the item
* \param psz_name the name
* \return VLC_SUCCESS or VLC_EGENERIC
*/
int
playlist_ItemSetName
(
playlist_item_t
*
p_item
,
const
char
*
psz_name
)
{
if
(
psz_name
&&
p_item
)
{
input_item_SetName
(
p_item
->
p_input
,
psz_name
);
return
VLC_SUCCESS
;
}
return
VLC_EGENERIC
;
}
/***************************************************************************
/***************************************************************************
* The following functions are local
* The following functions are local
***************************************************************************/
***************************************************************************/
...
...
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