From: Laurent Aimar Date: Sun, 18 Jan 2009 13:44:43 +0000 (+0100) Subject: Removed unused playlist_ItemNew(WithType). X-Git-Tag: 1.0.0-pre1~1244 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0783dcb411843e51b519872e9c7ca06fa51561d2;p=vlc Removed unused playlist_ItemNew(WithType). --- diff --git a/include/vlc_playlist.h b/include/vlc_playlist.h index b93f128139..b27fd5a130 100644 --- a/include/vlc_playlist.h +++ b/include/vlc_playlist.h @@ -309,20 +309,6 @@ VLC_EXPORT( bool, playlist_IsServicesDiscoveryLoaded, ( playlist_t *,const char * Item management ********************************************************/ -/*************************** Item creation **************************/ - -VLC_EXPORT( playlist_item_t* , playlist_ItemNewWithType, ( playlist_t *,const char *,const char *, int , const char *const *, int, int) ); - -/** Create a new item, without adding it to the playlist - * \param p_obj a vlc object (anyone will do) - * \param psz_uri the mrl of the item - * \param psz_name a text giving a name or description of the item - * \return the new item or NULL on failure - */ -#define playlist_ItemNew( a , b, c ) \ - playlist_ItemNewWithType( VLC_OBJECT(a) , b , c, 0, NULL, -1, 0 ) - - /*************************** Item deletion **************************/ VLC_EXPORT( int, playlist_DeleteFromInput, ( playlist_t *, int, bool ) ); diff --git a/src/libvlccore.sym b/src/libvlccore.sym index 78c72ce454..54a0dc7404 100644 --- a/src/libvlccore.sym +++ b/src/libvlccore.sym @@ -295,7 +295,6 @@ playlist_IsServicesDiscoveryLoaded playlist_ItemGetById playlist_ItemGetByInput playlist_ItemGetByInputId -playlist_ItemNewWithType playlist_ItemToNode playlist_LiveSearchUpdate playlist_Lock diff --git a/src/playlist/item.c b/src/playlist/item.c index 8c85d2a5ca..70380613dc 100644 --- a/src/playlist/item.c +++ b/src/playlist/item.c @@ -183,22 +183,6 @@ playlist_item_t *playlist_ItemNewFromInput( playlist_t *p_playlist, return p_item; } -playlist_item_t * playlist_ItemNewWithType( playlist_t *p_playlist, - const char *psz_uri, - const char *psz_name, - int i_options, - const char *const *ppsz_options, - int i_duration, int i_type ) -{ - input_item_t *p_input; - if( psz_uri == NULL ) return NULL; - p_input = input_item_NewWithType( VLC_OBJECT(p_playlist), psz_uri, - psz_name, - i_options, ppsz_options, VLC_INPUT_OPTION_TRUSTED, - i_duration, i_type ); - return playlist_ItemNewFromInput( p_playlist, p_input ); -} - /*************************************************************************** * Playlist item destruction ***************************************************************************/