From: RĂ©mi Duraffort Date: Thu, 17 Jul 2008 15:58:33 +0000 (+0200) Subject: The playlist is not lock at this stage so let it lock itself. X-Git-Tag: 0.9.0-test3~410 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6cc9595de6e94e5f56242a7b605fc30fa3369081;p=vlc The playlist is not lock at this stage so let it lock itself. --- diff --git a/modules/access/cdda/info.c b/modules/access/cdda/info.c index 51c970b959..5529e8e057 100644 --- a/modules/access/cdda/info.c +++ b/modules/access/cdda/info.c @@ -961,7 +961,7 @@ CDDAFixupPlaylist( access_t *p_access, cdda_data_t *p_cdda, if( b_play ) { - playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, true, + playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, false, p_playlist->status.p_item, NULL ); } diff --git a/modules/codec/cmml/intf.c b/modules/codec/cmml/intf.c index 88493303c7..b57cd668a6 100644 --- a/modules/codec/cmml/intf.c +++ b/modules/codec/cmml/intf.c @@ -510,7 +510,7 @@ static void FollowAnchor ( intf_thread_t *p_intf ) msg_Dbg( p_intf, "calling browser_Open with \"%s\"", psz_url ); #endif (void) browser_Open( psz_url ); - playlist_Control( p_playlist, PLAYLIST_PAUSE, true, 0 ); + playlist_Control( p_playlist, PLAYLIST_PAUSE, false, 0 ); } free( psz_uri_to_load ); diff --git a/modules/control/rc.c b/modules/control/rc.c index c78fd9c180..54c3cad6e8 100644 --- a/modules/control/rc.c +++ b/modules/control/rc.c @@ -1417,7 +1417,7 @@ static int Playlist( vlc_object_t *p_this, char const *psz_cmd, p_item = p_parent = p_playlist->items.p_elems[i_pos*2-1]; while( p_parent->p_parent ) p_parent = p_parent->p_parent; - playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, true, + playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, false, p_parent, p_item ); } else