Commit 1e8f2940 authored by Yoann Peronneau's avatar Yoann Peronneau

* gui/ncurses.c: first attempt to fix ncurses with new playlist

                 still not working: Add something to playlist
parent 0f7b859f
...@@ -76,14 +76,19 @@ static void Eject ( intf_thread_t * ); ...@@ -76,14 +76,19 @@ static void Eject ( intf_thread_t * );
static int HandleKey ( intf_thread_t *, int ); static int HandleKey ( intf_thread_t *, int );
static void Redraw ( intf_thread_t *, time_t * ); static void Redraw ( intf_thread_t *, time_t * );
static playlist_item_t *PlaylistGetRoot( intf_thread_t * );
static void PlaylistRebuild( intf_thread_t * ); static void PlaylistRebuild( intf_thread_t * );
static void PlaylistAddNode( intf_thread_t *, playlist_item_t *, int, char *); static void PlaylistAddNode( intf_thread_t *, playlist_item_t *, int, char *);
static void PlaylistDestroy( intf_thread_t * ); static void PlaylistDestroy( intf_thread_t * );
static int PlaylistChanged( vlc_object_t *, const char *, vlc_value_t, static int PlaylistChanged( vlc_object_t *, const char *, vlc_value_t,
vlc_value_t, void * ); vlc_value_t, void * );
static inline vlc_bool_t PlaylistIsPlaying( intf_thread_t *,
playlist_item_t * );
static void FindIndex ( intf_thread_t * ); static void FindIndex ( intf_thread_t * );
static void SearchPlaylist ( intf_thread_t *, char * ); static void SearchPlaylist ( intf_thread_t *, char * );
static int SubSearchPlaylist( intf_thread_t *, char *, int, int ); static int SubSearchPlaylist( intf_thread_t *, char *, int, int );
static void ManageSlider ( intf_thread_t * ); static void ManageSlider ( intf_thread_t * );
static void ReadDir ( intf_thread_t * ); static void ReadDir ( intf_thread_t * );
...@@ -121,6 +126,11 @@ enum ...@@ -121,6 +126,11 @@ enum
BOX_OPEN, BOX_OPEN,
BOX_BROWSE BOX_BROWSE
}; };
enum
{
VIEW_CATEGORY,
VIEW_ONELEVEL
};
struct dir_entry_t struct dir_entry_t
{ {
vlc_bool_t b_file; vlc_bool_t b_file;
...@@ -367,12 +377,12 @@ static void Run( intf_thread_t *p_intf ) ...@@ -367,12 +377,12 @@ static void Run( intf_thread_t *p_intf )
vlc_mutex_unlock( &p_sys->p_playlist->object_lock ); vlc_mutex_unlock( &p_sys->p_playlist->object_lock );
} }
if( p_sys->b_box_plidx_follow && p_sys->p_playlist->i_index >= 0 ) if( p_sys->b_box_plidx_follow && p_sys->p_playlist->status.p_item )
{ {
FindIndex( p_intf ); FindIndex( p_intf );
} }
while( ( i_key = getch()) != -1 ) while( ( i_key = getch() ) != -1 )
{ {
/* /*
* HandleKey returns 1 if the screen needs to be redrawn * HandleKey returns 1 if the screen needs to be redrawn
...@@ -457,6 +467,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) ...@@ -457,6 +467,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
if( p_sys->i_box_type == BOX_PLAYLIST && p_sys->p_playlist ) if( p_sys->i_box_type == BOX_PLAYLIST && p_sys->p_playlist )
{ {
int b_ret = VLC_TRUE; int b_ret = VLC_TRUE;
vlc_bool_t b_box_plidx_follow = VLC_FALSE;
switch( i_key ) switch( i_key )
{ {
...@@ -480,10 +491,16 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) ...@@ -480,10 +491,16 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
/* Playlist sort */ /* Playlist sort */
case 'o': case 'o':
playlist_Sort( p_sys->p_playlist, SORT_TITLE, ORDER_NORMAL ); playlist_RecursiveNodeSort( p_sys->p_playlist,
PlaylistGetRoot( p_intf ),
SORT_TITLE_NODES_FIRST, ORDER_NORMAL );
p_sys->b_need_update = VLC_TRUE;
return 1; return 1;
case 'O': case 'O':
playlist_Sort( p_sys->p_playlist, SORT_TITLE, ORDER_REVERSE ); playlist_RecursiveNodeSort( p_sys->p_playlist,
PlaylistGetRoot( p_intf ),
SORT_TITLE_NODES_FIRST, ORDER_REVERSE );
p_sys->b_need_update = VLC_TRUE;
return 1; return 1;
/* Playlist view */ /* Playlist view */
...@@ -491,13 +508,13 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) ...@@ -491,13 +508,13 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
switch( p_sys->i_current_view ) switch( p_sys->i_current_view )
{ {
case VIEW_CATEGORY: case VIEW_CATEGORY:
p_sys->i_current_view = VIEW_ALL; p_sys->i_current_view = VIEW_ONELEVEL;
break; break;
default: default:
p_sys->i_current_view = VIEW_CATEGORY; p_sys->i_current_view = VIEW_CATEGORY;
} }
//p_sys->b_need_update = VLC_TRUE;
PlaylistRebuild( p_intf ); PlaylistRebuild( p_intf );
FindIndex( p_intf );
return 1; return 1;
/* Playlist navigation */ /* Playlist navigation */
...@@ -523,25 +540,28 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) ...@@ -523,25 +540,28 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
case KEY_BACKSPACE: case KEY_BACKSPACE:
case KEY_DC: case KEY_DC:
{ {
int i_item = p_sys->p_playlist->i_index; playlist_t *p_playlist = p_sys->p_playlist;
playlist_item_t *p_item;
playlist_LockDelete( p_sys->p_playlist, p_sys->i_box_plidx ); vlc_mutex_lock( &p_playlist->object_lock );
if( i_item < p_sys->p_playlist->i_size && p_item = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
i_item != p_sys->p_playlist->i_index ) if( p_item->i_children == -1 )
{
playlist_DeleteFromItemId( p_playlist, p_item->i_id );
}
else
{ {
playlist_Goto( p_sys->p_playlist, i_item ); playlist_NodeDelete( p_playlist, p_item,
VLC_TRUE , VLC_FALSE );
} }
vlc_mutex_unlock( &p_playlist->object_lock );
p_sys->b_need_update = VLC_TRUE;
break; break;
} }
case KEY_ENTER: case KEY_ENTER:
case 0x0d: case 0x0d:
if( p_sys->i_current_view == VIEW_ALL )
{
playlist_Goto( p_sys->p_playlist, p_sys->i_box_plidx );
}
else
{
if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children
== -1 ) == -1 )
{ {
...@@ -555,8 +575,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) ...@@ -555,8 +575,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
p_sys->pp_plist[p_sys->i_box_plidx]->p_item, p_sys->pp_plist[p_sys->i_box_plidx]->p_item,
NULL ); NULL );
} }
} b_box_plidx_follow = VLC_TRUE;
p_sys->b_box_plidx_follow = VLC_TRUE;
break; break;
default: default:
b_ret = VLC_FALSE; b_ret = VLC_FALSE;
...@@ -566,25 +585,12 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) ...@@ -566,25 +585,12 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
if( b_ret ) if( b_ret )
{ {
int i_max = p_sys->i_plist_entries; int i_max = p_sys->i_plist_entries;
if( p_sys->i_current_view == VIEW_ALL )
i_max = p_sys->p_playlist->i_size;
if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1; if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0; if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
if( p_sys->i_current_view == VIEW_ALL ) if( PlaylistIsPlaying( p_intf,
{ p_sys->pp_plist[p_sys->i_box_plidx]->p_item ) )
if( p_sys->i_box_plidx == p_sys->p_playlist->i_index ) b_box_plidx_follow = VLC_TRUE;
p_sys->b_box_plidx_follow = VLC_TRUE; p_sys->b_box_plidx_follow = b_box_plidx_follow;
else
p_sys->b_box_plidx_follow = VLC_FALSE;
}
else
{
if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item ==
p_sys->p_playlist->status.p_item )
p_sys->b_box_plidx_follow = VLC_TRUE;
else
p_sys->b_box_plidx_follow = VLC_FALSE;
}
return 1; return 1;
} }
} }
...@@ -628,9 +634,11 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) ...@@ -628,9 +634,11 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
char *psz_uri = (char *)malloc( sizeof(char)*i_size_entry); char *psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path ); sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path );
/* XXX
playlist_Add( p_sys->p_playlist, psz_uri, playlist_Add( p_sys->p_playlist, psz_uri,
psz_uri, psz_uri,
PLAYLIST_APPEND, PLAYLIST_END ); PLAYLIST_APPEND, PLAYLIST_END );
*/
p_sys->i_box_type = BOX_PLAYLIST; p_sys->i_box_type = BOX_PLAYLIST;
free( psz_uri ); free( psz_uri );
} }
...@@ -785,9 +793,11 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) ...@@ -785,9 +793,11 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
case 0x0d: case 0x0d:
if( p_playlist && i_chain_len > 0 ) if( p_playlist && i_chain_len > 0 )
{ {
/*
playlist_Add( p_playlist, p_sys->psz_open_chain, playlist_Add( p_playlist, p_sys->psz_open_chain,
p_sys->psz_open_chain, p_sys->psz_open_chain,
PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END ); PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END );
*/
p_sys->b_box_plidx_follow = VLC_TRUE; p_sys->b_box_plidx_follow = VLC_TRUE;
} }
p_sys->i_box_type = BOX_PLAYLIST; p_sys->i_box_type = BOX_PLAYLIST;
...@@ -1053,7 +1063,6 @@ static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring ) ...@@ -1053,7 +1063,6 @@ static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring )
int i_first = 0 ; int i_first = 0 ;
int i_item = -1; int i_item = -1;
intf_sys_t *p_sys = p_intf->p_sys; intf_sys_t *p_sys = p_intf->p_sys;
playlist_t *p_playlist = p_sys->p_playlist;
if( p_sys->i_before_search >= 0 ) if( p_sys->i_before_search >= 0 )
{ {
...@@ -1066,8 +1075,7 @@ static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring ) ...@@ -1066,8 +1075,7 @@ static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring )
return; return;
} }
i_max = p_sys->i_current_view == VIEW_ALL ? i_max = p_sys->i_plist_entries;
p_playlist->i_size : p_sys->i_plist_entries;
i_item = SubSearchPlaylist( p_intf, psz_searchstring, i_first + 1, i_max ); i_item = SubSearchPlaylist( p_intf, psz_searchstring, i_first + 1, i_max );
if( i_item < 0 ) if( i_item < 0 )
...@@ -1084,25 +1092,8 @@ static int SubSearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring, ...@@ -1084,25 +1092,8 @@ static int SubSearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring,
int i_start, int i_stop ) int i_start, int i_stop )
{ {
intf_sys_t *p_sys = p_intf->p_sys; intf_sys_t *p_sys = p_intf->p_sys;
playlist_t *p_playlist = p_sys->p_playlist;
int i, i_item = -1; int i, i_item = -1;
if( p_sys->i_current_view == VIEW_ALL )
{
for( i = i_start + 1; i < i_stop; i++ )
{
if( strcasestr( p_playlist->pp_items[i]->input.psz_name,
psz_searchstring ) != NULL
|| strcasestr( p_playlist->pp_items[i]->input.psz_uri,
psz_searchstring ) != NULL )
{
i_item = i;
break;
}
}
}
else
{
for( i = i_start + 1; i < i_stop; i++ ) for( i = i_start + 1; i < i_stop; i++ )
{ {
if( strcasestr( p_sys->pp_plist[i]->psz_display, if( strcasestr( p_sys->pp_plist[i]->psz_display,
...@@ -1112,7 +1103,6 @@ static int SubSearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring, ...@@ -1112,7 +1103,6 @@ static int SubSearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring,
break; break;
} }
} }
}
return i_item; return i_item;
} }
...@@ -1197,7 +1187,7 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh ) ...@@ -1197,7 +1187,7 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
int h; int h;
int y_end; int y_end;
//clear(); clear();
/* Title */ /* Title */
attrset( A_REVERSE ); attrset( A_REVERSE );
...@@ -1505,16 +1495,14 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh ) ...@@ -1505,16 +1495,14 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
p_sys->i_box_type == BOX_OPEN ) && p_sys->p_playlist ) p_sys->i_box_type == BOX_OPEN ) && p_sys->p_playlist )
{ {
/* Playlist box */ /* Playlist box */
playlist_t *p_playlist = p_sys->p_playlist;
int i_start, i_stop, i_max = p_sys->i_plist_entries; int i_start, i_stop, i_max = p_sys->i_plist_entries;
int i_item; int i_item;
char *psz_title; char *psz_title;
switch( p_sys->i_current_view ) switch( p_sys->i_current_view )
{ {
case VIEW_ALL: case VIEW_ONELEVEL:
psz_title = strdup( " Playlist (All, unsorted) " ); psz_title = strdup( " Playlist (All, one level) " );
i_max = p_playlist->i_size;
break; break;
case VIEW_CATEGORY: case VIEW_CATEGORY:
psz_title = strdup( " Playlist (By category) " ); psz_title = strdup( " Playlist (By category) " );
...@@ -1525,8 +1513,7 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh ) ...@@ -1525,8 +1513,7 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
DrawBox( p_sys->w, y++, 0, h, COLS, psz_title ); DrawBox( p_sys->w, y++, 0, h, COLS, psz_title );
if( p_sys->i_current_view != VIEW_ALL && if( p_sys->b_need_update || p_sys->pp_plist == NULL )
( p_sys->b_need_update || p_sys->pp_plist == NULL ) )
{ {
PlaylistRebuild( p_intf ); PlaylistRebuild( p_intf );
} }
...@@ -1536,6 +1523,8 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh ) ...@@ -1536,6 +1523,8 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
} }
if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0; if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
if( p_sys->i_box_plidx < (h - 2)/2 ) if( p_sys->i_box_plidx < (h - 2)/2 )
{ {
...@@ -1561,50 +1550,11 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh ) ...@@ -1561,50 +1550,11 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
i_stop = i_max; i_stop = i_max;
} }
if( p_sys->i_current_view == VIEW_ALL )
{
for( i_item = i_start; i_item < i_stop; i_item++ )
{
vlc_bool_t b_selected = ( p_sys->i_box_plidx == i_item );
int c = p_playlist->i_index == i_item ? '>' : ' ';
if( y >= y_end ) break;
if( b_selected )
{
attrset( A_REVERSE );
}
if( !strcmp( p_playlist->pp_items[i_item]->input.psz_name,
p_playlist->pp_items[i_item]->input.psz_uri ) )
{
mvnprintw( y++, 1, COLS - 2, "%c %d - '%s'",
c,
i_item,
p_playlist->pp_items[i_item]->input.psz_uri );
}
else
{
mvnprintw( y++, 1, COLS - 2, "%c %d - '%s' (%s)",
c,
i_item,
p_playlist->pp_items[i_item]->input.psz_uri,
p_playlist->pp_items[i_item]->input.psz_name );
}
if( b_selected )
{
attroff( A_REVERSE );
}
}
}
else
{
for( i_item = i_start; i_item < i_stop; i_item++ ) for( i_item = i_start; i_item < i_stop; i_item++ )
{ {
vlc_bool_t b_selected = ( p_sys->i_box_plidx == i_item ); vlc_bool_t b_selected = ( p_sys->i_box_plidx == i_item );
int c = ( p_playlist->status.p_item == int c = ( PlaylistIsPlaying( p_intf,
p_sys->pp_plist[i_item]->p_item ) ? '>' : ' '; p_sys->pp_plist[i_item]->p_item ) ) ? '>' : ' ';
if( y >= y_end ) break; if( y >= y_end ) break;
if( b_selected ) if( b_selected )
...@@ -1620,7 +1570,6 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh ) ...@@ -1620,7 +1570,6 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
} }
} }
}
else else
{ {
y++; y++;
...@@ -1661,10 +1610,28 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh ) ...@@ -1661,10 +1610,28 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
*t_last_refresh = time( 0 ); *t_last_refresh = time( 0 );
} }
static playlist_item_t *PlaylistGetRoot( intf_thread_t *p_intf )
{
intf_sys_t *p_sys = p_intf->p_sys;
playlist_t *p_playlist = p_sys->p_playlist;
if( p_playlist == NULL )
{
return NULL;
}
switch( p_sys->i_current_view )
{
case VIEW_CATEGORY:
return p_playlist->p_root_category;
default:
return p_playlist->p_root_onelevel;
}
}
static void PlaylistRebuild( intf_thread_t *p_intf ) static void PlaylistRebuild( intf_thread_t *p_intf )
{ {
intf_sys_t *p_sys = p_intf->p_sys; intf_sys_t *p_sys = p_intf->p_sys;
playlist_view_t *p_view;
playlist_t *p_playlist = p_sys->p_playlist; playlist_t *p_playlist = p_sys->p_playlist;
if( p_playlist == NULL ) if( p_playlist == NULL )
...@@ -1674,13 +1641,11 @@ static void PlaylistRebuild( intf_thread_t *p_intf ) ...@@ -1674,13 +1641,11 @@ static void PlaylistRebuild( intf_thread_t *p_intf )
vlc_mutex_lock( &p_playlist->object_lock ); vlc_mutex_lock( &p_playlist->object_lock );
p_view = playlist_ViewFind( p_playlist, p_intf->p_sys->i_current_view );
/* First clear the old one */ /* First clear the old one */
PlaylistDestroy( p_intf ); PlaylistDestroy( p_intf );
/* Build the new one */ /* Build the new one */
PlaylistAddNode( p_intf, p_view->p_root, 0, "" ); PlaylistAddNode( p_intf, PlaylistGetRoot( p_intf ), 0, "" );
p_sys->b_need_update = VLC_FALSE; p_sys->b_need_update = VLC_FALSE;
...@@ -1704,7 +1669,7 @@ static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node, ...@@ -1704,7 +1669,7 @@ static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
int i_size; int i_size;
p_child = p_node->pp_children[k]; p_child = p_node->pp_children[k];
i_size = strlen( c ) + strlen( p_child->input.psz_name ) + 4; i_size = strlen( c ) + strlen( p_child->p_input->psz_name ) + 4;
buff = (char *)malloc( sizeof( char ) * i_size ); buff = (char *)malloc( sizeof( char ) * i_size );
p_pl_item = (struct pl_item_t *)malloc( sizeof( struct pl_item_t ) ); p_pl_item = (struct pl_item_t *)malloc( sizeof( struct pl_item_t ) );
if( p_pl_item == NULL || buff == NULL ) return; if( p_pl_item == NULL || buff == NULL ) return;
...@@ -1712,11 +1677,11 @@ static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node, ...@@ -1712,11 +1677,11 @@ static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
if( strlen( c ) ) if( strlen( c ) )
{ {
sprintf( buff, "%s%c-%s", c, k == p_node->i_children - 1 ? sprintf( buff, "%s%c-%s", c, k == p_node->i_children - 1 ?
'`' : '|', p_child->input.psz_name ); '`' : '|', p_child->p_input->psz_name );
} }
else else
{ {
sprintf( buff, " %s", p_child->input.psz_name ); sprintf( buff, " %s", p_child->p_input->psz_name );
} }
p_pl_item->psz_display = strdup( buff ); p_pl_item->psz_display = strdup( buff );
p_pl_item->p_item = p_child; p_pl_item->p_item = p_child;
...@@ -1744,29 +1709,37 @@ static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable, ...@@ -1744,29 +1709,37 @@ static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/* Playlist suxx */
static inline vlc_bool_t PlaylistIsPlaying( intf_thread_t *p_intf,
playlist_item_t *p_item )
{
playlist_item_t *p_played_item = p_intf->p_sys->p_playlist->status.p_item;
return( p_item != NULL && p_played_item != NULL &&
p_item->p_input != NULL && p_played_item->p_input != NULL &&
p_item->p_input->i_id == p_played_item->p_input->i_id );
}
static void FindIndex( intf_thread_t *p_intf ) static void FindIndex( intf_thread_t *p_intf )
{ {
intf_sys_t *p_sys = p_intf->p_sys; intf_sys_t *p_sys = p_intf->p_sys;
int i; int i;
if( p_sys->i_current_view == VIEW_ALL ) if( p_sys->i_box_plidx < p_sys->i_plist_entries &&
p_sys->i_box_plidx >= 0 &&
PlaylistIsPlaying( p_intf,
p_sys->pp_plist[p_sys->i_box_plidx]->p_item ) )
{ {
p_sys->i_box_plidx = p_sys->p_playlist->i_index; return;
} }
else if( ( p_sys->i_box_plidx < p_sys->i_plist_entries &&
p_sys->pp_plist[p_sys->i_box_plidx]->p_item !=
p_sys->p_playlist->status.p_item ) )
{
for( i = 0; i < p_sys->i_plist_entries; i++ ) for( i = 0; i < p_sys->i_plist_entries; i++ )
{ {
if( p_sys->pp_plist[i]->p_item == if( PlaylistIsPlaying( p_intf, p_sys->pp_plist[i]->p_item ) )
p_sys->p_playlist->status.p_item )
{ {
p_sys->i_box_plidx = i; p_sys->i_box_plidx = i;
break; break;
} }
} }
}
} }
static void PlaylistDestroy( intf_thread_t *p_intf ) static void PlaylistDestroy( intf_thread_t *p_intf )
...@@ -1805,14 +1778,14 @@ static void Eject( intf_thread_t *p_intf ) ...@@ -1805,14 +1778,14 @@ static void Eject( intf_thread_t *p_intf )
vlc_mutex_lock( &p_playlist->object_lock ); vlc_mutex_lock( &p_playlist->object_lock );
if( p_playlist->i_index < 0 ) if( p_playlist->status.p_item == NULL )
{ {
vlc_mutex_unlock( &p_playlist->object_lock ); vlc_mutex_unlock( &p_playlist->object_lock );
vlc_object_release( p_playlist ); vlc_object_release( p_playlist );
return; return;
} }
psz_name = p_playlist->pp_items[ p_playlist->i_index ]->input.psz_name; psz_name = p_playlist->status.p_item->p_input->psz_name;
if( psz_name ) if( psz_name )
{ {
...@@ -1912,7 +1885,7 @@ static int comp_dir_entries( const void *pp_dir_entry1, ...@@ -1912,7 +1885,7 @@ static int comp_dir_entries( const void *pp_dir_entry1,
static void ReadDir( intf_thread_t *p_intf ) static void ReadDir( intf_thread_t *p_intf )
{ {
intf_sys_t *p_sys = p_intf->p_sys; intf_sys_t *p_sys = p_intf->p_sys;
DIR * p_current_dir; DIR *p_current_dir;
int i; int i;
if( p_sys->psz_current_dir && *p_sys->psz_current_dir ) if( p_sys->psz_current_dir && *p_sys->psz_current_dir )
......
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