Commit 5353fdc3 authored by Clément Stenac's avatar Clément Stenac

* access_directory : only play if we are the current playlist item. Handle the...

* access_directory : only play if we are the current playlist item. Handle the case where we are not
* libvlc : add -S as shortcut for services-discovery
parent 12f48a5b
...@@ -169,6 +169,9 @@ static int Read( access_t *p_access, uint8_t *p_buffer, int i_len) ...@@ -169,6 +169,9 @@ static int Read( access_t *p_access, uint8_t *p_buffer, int i_len)
char *psz; char *psz;
int i_mode, i_pos; int i_mode, i_pos;
playlist_item_t *p_item;
vlc_bool_t b_play = VLC_FALSE;
playlist_t *p_playlist = playlist_t *p_playlist =
(playlist_t *) vlc_object_find( p_access, (playlist_t *) vlc_object_find( p_access,
VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
...@@ -207,24 +210,45 @@ static int Read( access_t *p_access, uint8_t *p_buffer, int i_len) ...@@ -207,24 +210,45 @@ static int Read( access_t *p_access, uint8_t *p_buffer, int i_len)
free( psz ); free( psz );
/* Make sure we are deleted when we are done */ /* Make sure we are deleted when we are done */
// p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
/* The playlist position we will use for the add */ /* The playlist position we will use for the add */
i_pos = p_playlist->i_index + 1; i_pos = p_playlist->i_index + 1;
msg_Dbg( p_access, "opening directory `%s'", psz_name ); msg_Dbg( p_access, "opening directory `%s'", psz_name );
p_playlist->status.p_item->input.i_type = ITEM_TYPE_DIRECTORY; if( &p_playlist->status.p_item->input ==
((input_thread_t *)p_access->p_parent)->input.p_item )
{
p_item = p_playlist->status.p_item;
b_play = VLC_TRUE;
msg_Dbg( p_access, "starting directory playback");
}
else
{
input_item_t *p_current = ( (input_thread_t*)p_access->p_parent)->
input.p_item;
p_item = playlist_ItemGetByInput( p_playlist, p_current );
msg_Dbg( p_access, "not starting directory playback");
if( !p_item )
{
msg_Dbg( p_playlist, "unable to find item in playlist");
return -1;
}
b_play = VLC_FALSE;
}
p_item->input.i_type = ITEM_TYPE_DIRECTORY;
if( ReadDir( p_playlist, psz_name , i_mode, &i_pos, if( ReadDir( p_playlist, psz_name , i_mode, &i_pos,
p_playlist->status.p_item p_item ) != VLC_SUCCESS )
) != VLC_SUCCESS )
{ {
goto end;
} }
end: end:
/* Begin to read the directory */ /* Begin to read the directory */
playlist_Control( p_playlist, PLAYLIST_VIEWPLAY,p_playlist->status.i_view, if( b_play )
p_playlist->status.p_item, NULL ); {
playlist_Control( p_playlist, PLAYLIST_VIEWPLAY,
p_playlist->status.i_view,
p_playlist->status.p_item, NULL );
}
if( psz_name ) free( psz_name ); if( psz_name ) free( psz_name );
vlc_object_release( p_playlist ); vlc_object_release( p_playlist );
......
...@@ -1001,6 +1001,7 @@ vlc_module_begin(); ...@@ -1001,6 +1001,7 @@ vlc_module_begin();
add_category_hint( N_("Playlist"), PLAYLIST_CAT_LONGTEXT , VLC_FALSE ); add_category_hint( N_("Playlist"), PLAYLIST_CAT_LONGTEXT , VLC_FALSE );
add_string( "services-discovery", 0, NULL, add_string( "services-discovery", 0, NULL,
SD_TEXT, SD_LONGTEXT, VLC_FALSE ); SD_TEXT, SD_LONGTEXT, VLC_FALSE );
change_short('S');
add_bool( "random", 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT, VLC_FALSE ); add_bool( "random", 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT, VLC_FALSE );
change_short('Z'); change_short('Z');
add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT, VLC_FALSE ); add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT, VLC_FALSE );
......
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