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
44a22697
Commit
44a22697
authored
Aug 07, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist: remove dead code
parent
e392d6ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
48 deletions
+0
-48
src/playlist/item.c
src/playlist/item.c
+0
-48
No files found.
src/playlist/item.c
View file @
44a22697
...
...
@@ -794,54 +794,6 @@ int playlist_DeleteItem( playlist_t * p_playlist, playlist_item_t *p_item,
{
assert
(
b_stop
);
return
playlist_NodeDelete
(
p_playlist
,
p_item
,
true
,
false
);
#if 0
int i;
int i_id = p_item->i_id;
PL_ASSERT_LOCKED;
if( p_item->i_children > -1 )
{
return playlist_NodeDelete( p_playlist, p_item, true, false );
}
pl_priv(p_playlist)->b_reset_currently_playing = true;
var_SetInteger( p_playlist, "playlist-item-deleted", i_id );
/* Remove the item from the bank */
ARRAY_BSEARCH( p_playlist->all_items,->i_id, int, i_id, i );
if( i != -1 )
ARRAY_REMOVE( p_playlist->all_items, i );
ARRAY_BSEARCH( p_playlist->items,->i_id, int, i_id, i );
if( i != -1 )
ARRAY_REMOVE( p_playlist->items, i );
/* Check if it is the current item */
if( get_current_status_item( p_playlist ) == p_item )
{
/* Stop it if we have to */
if( b_stop )
{
playlist_Control( p_playlist, PLAYLIST_STOP, pl_Locked );
msg_Info( p_playlist, "stopping playback" );
}
/* In any case, this item can't be the next one to be played ! */
set_current_status_item( p_playlist, NULL );
}
ARRAY_BSEARCH( p_playlist->current,->i_id, int, i_id, i );
if( i != -1 )
ARRAY_REMOVE( p_playlist->current, i );
PL_DEBUG( "deleting item `%s'", p_item->p_input->psz_name );
/* Remove the item from its parent */
playlist_NodeRemoveItem( p_playlist, p_item, p_item->p_parent );
playlist_ItemRelease( p_item );
return VLC_SUCCESS;
#endif
}
static
int
RecursiveAddIntoParent
(
...
...
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