]> git.sesse.net Git - vlc/commitdiff
The playlist is not lock at this stage so let it lock itself.
authorRémi Duraffort <ivoire@videolan.org>
Thu, 17 Jul 2008 15:58:33 +0000 (17:58 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Thu, 17 Jul 2008 16:39:47 +0000 (18:39 +0200)
modules/access/cdda/info.c
modules/codec/cmml/intf.c
modules/control/rc.c

index 51c970b959b79096a8e490d085de93af51e0478d..5529e8e0579a9b9d8fda5dbb8933511e5c2a677a 100644 (file)
@@ -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 );
     }
 
index 88493303c7a6d023b03bb262ace78e35ffe64505..b57cd668a6b6084f3b8c5494974f8a6c302c424a 100644 (file)
@@ -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 );
index c78fd9c180aa795f9c1811b857293ae1ac897bea..54c3cad6e8607e03451cdde7302830bd70d863fe 100644 (file)
@@ -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