Commit 7efba6b3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

playlist_ItemGetByInputId: remove dead code

playlist_ItemGetByInput can be used instead anyway
parent 507ae78e
......@@ -333,7 +333,6 @@ VLC_EXPORT( int, playlist_BothAddInput, ( playlist_t *, input_item_t *,playlist_
/********************************** Item search *************************/
VLC_EXPORT( playlist_item_t *, playlist_ItemGetById, (playlist_t *, int ) );
VLC_EXPORT( playlist_item_t *, playlist_ItemGetByInput, (playlist_t *,input_item_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 *) );
......
......@@ -301,7 +301,6 @@ playlist_Import
playlist_IsServicesDiscoveryLoaded
playlist_ItemGetById
playlist_ItemGetByInput
playlist_ItemGetByInputId
playlist_LiveSearchUpdate
playlist_Lock
playlist_NodeAppend
......
......@@ -80,38 +80,6 @@ playlist_item_t* playlist_ItemGetByInput( playlist_t * p_playlist,
}
/**
* Get input by item id
*
* Find the playlist item matching the input id under the given node
* \param p_playlist the playlist
* \param i_input_id the id of the input to find
* \param p_root the root node of the search
* \return the playlist item or NULL on failure
*/
playlist_item_t * playlist_ItemGetByInputId( playlist_t *p_playlist,
int i_input_id,
playlist_item_t *p_root )
{
int i;
PL_ASSERT_LOCKED;
assert( p_root != NULL );
for( i = 0 ; i< p_root->i_children ; i++ )
{
if( p_root->pp_children[i]->p_input &&
p_root->pp_children[i]->p_input->i_id == i_input_id )
{
return p_root->pp_children[i];
}
else if( p_root->pp_children[i]->i_children >= 0 )
{
return playlist_ItemGetByInputId( p_playlist, i_input_id,
p_root->pp_children[i] );
}
}
return NULL;
}
/***************************************************************************
* Live search handling
***************************************************************************/
......
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