Commit 0783dcb4 authored by Laurent Aimar's avatar Laurent Aimar

Removed unused playlist_ItemNew(WithType).

parent 75ff396a
......@@ -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 ) );
......
......@@ -295,7 +295,6 @@ playlist_IsServicesDiscoveryLoaded
playlist_ItemGetById
playlist_ItemGetByInput
playlist_ItemGetByInputId
playlist_ItemNewWithType
playlist_ItemToNode
playlist_LiveSearchUpdate
playlist_Lock
......
......@@ -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
***************************************************************************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment