]> git.sesse.net Git - vlc/blobdiff - src/playlist/playlist.c
* modules/misc/httpd.c: added missing sanity checks
[vlc] / src / playlist / playlist.c
index 384a91f67efaab7714a675aef961b7f7b7190cd5..3b4ee2941967dd02c5ac6cd52fa9a47a078a6e20 100644 (file)
@@ -2,7 +2,7 @@
  * playlist.c : Playlist management functions
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: playlist.c,v 1.36 2003/05/26 19:06:47 gbazin Exp $
+ * $Id: playlist.c,v 1.57 2003/10/06 16:23:30 zorglub Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -25,6 +25,8 @@
 #include <string.h>                                            /* strerror() */
 
 #include <vlc/vlc.h>
+#include <vlc/vout.h>
+#include <vlc/sout.h>
 
 #include "stream_control.h"
 #include "input_ext-intf.h"
@@ -32,6 +34,7 @@
 #include "vlc_playlist.h"
 
 #define PLAYLIST_FILE_HEADER_0_5  "# vlc playlist file version 0.5"
+#define PLAYLIST_FILE_HEADER_0_6  "# vlc playlist file version 0.6"
 
 /*****************************************************************************
  * Local prototypes
@@ -42,11 +45,13 @@ static void PlayItem  ( playlist_t * );
 
 static void Poubellize ( playlist_t *, input_thread_t * );
 
-/*****************************************************************************
- * playlist_Create: create playlist
- *****************************************************************************
+/**
+ * Create playlist
+ *
  * Create a playlist structure.
- *****************************************************************************/
+ * \param p_parent the vlc object that is to be the parent of this playlist
+ * \return a pointer to the created playlist, or NULL on error
+ */
 playlist_t * __playlist_Create ( vlc_object_t *p_parent )
 {
     playlist_t *p_playlist;
@@ -64,7 +69,15 @@ playlist_t * __playlist_Create ( vlc_object_t *p_parent )
     val.b_bool = VLC_TRUE;
     var_Set( p_playlist, "intf-change", val );
 
-    var_Create( p_playlist, "intf-popupmenu", VLC_VAR_VOID );
+    var_Create( p_playlist, "intf-popupmenu", VLC_VAR_BOOL );
+
+    var_Create( p_playlist, "intf-show", VLC_VAR_BOOL );
+    val.b_bool = VLC_TRUE;
+    var_Set( p_playlist, "intf-show", val );
+
+    var_Create( p_playlist, "random", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
+    var_Create( p_playlist, "repeat", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
+    var_Create( p_playlist, "loop", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
 
     p_playlist->p_input = NULL;
     p_playlist->i_status = PLAYLIST_STOPPED;
@@ -86,11 +99,12 @@ playlist_t * __playlist_Create ( vlc_object_t *p_parent )
     return p_playlist;
 }
 
-/*****************************************************************************
- * playlist_Destroy: destroy the playlist
- *****************************************************************************
+/**
+ * Destroy the playlist.
+ *
  * Delete all items in the playlist and free the playlist structure.
- *****************************************************************************/
+ * \param p_playlist the playlist structure to destroy
+ */
 void playlist_Destroy( playlist_t * p_playlist )
 {
     p_playlist->b_die = 1;
@@ -102,14 +116,40 @@ void playlist_Destroy( playlist_t * p_playlist )
     vlc_object_destroy( p_playlist );
 }
 
-/*****************************************************************************
- * playlist_Add: add an item to the playlist
- *****************************************************************************
- * Add an item to the playlist at position i_pos. If i_pos is PLAYLIST_END,
- * add it at the end regardless of the playlist current size.
- *****************************************************************************/
-int playlist_Add( playlist_t *p_playlist, const char * psz_target,
-                                          int i_mode, int i_pos )
+/**
+ * Add an MRL to the playlist. This is a simplified version of
+ * playlist_AddExt inculded for convenince. It equals calling playlist_AddExt
+ * with psz_name == psz_target and i_duration == -1
+ */
+
+int playlist_Add( playlist_t *p_playlist, const char *psz_target,
+                  const char **ppsz_options, int i_options,
+                  int i_mode, int i_pos )
+{
+    return playlist_AddExt( p_playlist, psz_target, psz_target, -1,
+                            ppsz_options, i_options, i_mode, i_pos );
+}
+
+/**
+ * Add a MRL into the playlist.
+ *
+ * \param p_playlist the playlist to add into
+ * \param psz_uri the mrl to add to the playlist
+ * \param psz_name a text giving a name or description of this item
+ * \param i_duration a hint about the duration of this item, in miliseconds, or
+ *        -1 if unknown.
+ * \param ppsz_options array of options
+ * \param i_options number of items in ppsz_options
+ * \param i_mode the mode used when adding
+ * \param i_pos the position in the playlist where to add. If this is
+ *        PLAYLIST_END the item will be added at the end of the playlist
+ *        regardless of it's size
+ * \return always returns 0
+*/
+int playlist_AddExt( playlist_t *p_playlist, const char * psz_uri,
+                     const char * psz_name, mtime_t i_duration,
+                     const char **ppsz_options, int i_options, int i_mode,
+                     int i_pos )
 {
     playlist_item_t * p_item;
 
@@ -119,16 +159,43 @@ int playlist_Add( playlist_t *p_playlist, const char * psz_target,
         msg_Err( p_playlist, "out of memory" );
     }
 
-    p_item->psz_name = strdup( psz_target );
-    p_item->psz_uri  = strdup( psz_target );
+    p_item->psz_name   = strdup( psz_name );
+    p_item->psz_uri    = strdup( psz_uri );
+    p_item->psz_author = strdup( "" );
+    p_item->i_duration = i_duration;
     p_item->i_type = 0;
     p_item->i_status = 0;
     p_item->b_autodeletion = VLC_FALSE;
+    p_item->b_enabled = VLC_TRUE;
+    p_item->i_group = PLAYLIST_TYPE_MANUAL;
+
+    p_item->ppsz_options = NULL;
+    p_item->i_options = i_options;
+
+    if( i_options )
+    {
+        int i;
+
+        p_item->ppsz_options = (char **)malloc( i_options * sizeof(char *) );
+        for( i = 0; i < i_options; i++ )
+            p_item->ppsz_options[i] = strdup( ppsz_options[i] );
+
+    }
 
     return playlist_AddItem( p_playlist, p_item, i_mode, i_pos );
 }
 
-
+/**
+ * Add a playlist item into a playlist
+ *
+ * \param p_playlist the playlist to insert into
+ * \param p_item the playlist item to insert
+ * \param i_mode the mode used when adding
+ * \param i_pos the possition in the playlist where to add. If this is
+ *        PLAYLIST_END the item will be added at the end of the playlist
+ *        regardless of it's size
+ * \return always returns 0
+*/
 int playlist_AddItem( playlist_t *p_playlist, playlist_item_t * p_item,
                 int i_mode, int i_pos)
 {
@@ -169,7 +236,7 @@ int playlist_AddItem( playlist_t *p_playlist, playlist_item_t * p_item,
     }
 
 
-    msg_Dbg( p_playlist, "adding playlist item « %s »", p_item->psz_name );
+    msg_Dbg( p_playlist, "adding playlist item « %s » ( %s )", p_item->psz_name, p_item->psz_uri);
 
     /* Create the new playlist item */
 
@@ -208,6 +275,7 @@ int playlist_AddItem( playlist_t *p_playlist, playlist_item_t * p_item,
                      p_playlist->i_size,
                      i_pos,
                      p_item );
+        p_playlist->i_enabled ++;
 
         if( p_playlist->i_index >= i_pos )
         {
@@ -248,11 +316,13 @@ int playlist_AddItem( playlist_t *p_playlist, playlist_item_t * p_item,
     return 0;
 }
 
-/*****************************************************************************
- * playlist_Delete: delete an item from the playlist
- *****************************************************************************
- * Delete the item in the playlist with position i_pos.
- *****************************************************************************/
+/**
+ * delete an item from a playlist.
+ *
+ * \param p_playlist the playlist to remove from.
+ * \param i_pos the position of the item to remove
+ * \return returns 0
+ */
 int playlist_Delete( playlist_t * p_playlist, int i_pos )
 {
     vlc_value_t     val;
@@ -271,6 +341,15 @@ int playlist_Delete( playlist_t * p_playlist, int i_pos )
         {
             free( p_playlist->pp_items[i_pos]->psz_uri );
         }
+        if( p_playlist->pp_items[i_pos]->i_options )
+        {
+            int i;
+
+            for( i = 0; i < p_playlist->pp_items[i_pos]->i_options; i++ )
+                free( p_playlist->pp_items[i_pos]->ppsz_options[i] );
+
+            free( p_playlist->pp_items[i_pos]->ppsz_options );
+        }
 
         /* XXX: what if the item is still in use? */
         free( p_playlist->pp_items[i_pos] );
@@ -284,6 +363,8 @@ int playlist_Delete( playlist_t * p_playlist, int i_pos )
         REMOVE_ELEM( p_playlist->pp_items,
                      p_playlist->i_size,
                      i_pos );
+        if( p_playlist->i_enabled > 0 )
+            p_playlist->i_enabled--;
     }
 
     vlc_mutex_unlock( &p_playlist->object_lock );
@@ -294,12 +375,190 @@ int playlist_Delete( playlist_t * p_playlist, int i_pos )
     return 0;
 }
 
-/*****************************************************************************
- * playlist_Move: move an item in the playlist
- *****************************************************************************
+/**
+ * Disables a playlist item
+ *
+ * \param p_playlist the playlist to disable from.
+ * \param i_pos the position of the item to disable
+ * \return returns 0
+ */
+int playlist_Disable( playlist_t * p_playlist, int i_pos )
+{
+    vlc_value_t     val;
+    vlc_mutex_lock( &p_playlist->object_lock );
+
+
+    if( i_pos >= 0 && i_pos < p_playlist->i_size )
+    {
+        msg_Dbg( p_playlist, "disabling playlist item « %s »",
+                             p_playlist->pp_items[i_pos]->psz_name );
+
+        if( p_playlist->pp_items[i_pos]->b_enabled == VLC_TRUE )
+            p_playlist->i_enabled--;
+        p_playlist->pp_items[i_pos]->b_enabled = VLC_FALSE;
+    }
+
+    vlc_mutex_unlock( &p_playlist->object_lock );
+
+    val.b_bool = VLC_TRUE;
+    var_Set( p_playlist, "intf-change", val );
+
+    return 0;
+}
+
+/**
+ * Enables a playlist item
+ *
+ * \param p_playlist the playlist to enable from.
+ * \param i_pos the position of the item to enable
+ * \return returns 0
+ */
+int playlist_Enable( playlist_t * p_playlist, int i_pos )
+{
+    vlc_value_t     val;
+    vlc_mutex_lock( &p_playlist->object_lock );
+
+    if( i_pos >= 0 && i_pos < p_playlist->i_size )
+    {
+        msg_Dbg( p_playlist, "enabling playlist item « %s »",
+                             p_playlist->pp_items[i_pos]->psz_name );
+
+        if( p_playlist->pp_items[i_pos]->b_enabled == VLC_FALSE )
+            p_playlist->i_enabled++;
+
+        p_playlist->pp_items[i_pos]->b_enabled = VLC_TRUE;
+    }
+
+    vlc_mutex_unlock( &p_playlist->object_lock );
+
+    val.b_bool = VLC_TRUE;
+    var_Set( p_playlist, "intf-change", val );
+
+    return 0;
+}
+
+/**
+ * Disables a playlist group
+ *
+ * \param p_playlist the playlist to disable from.
+ * \param i_pos the id of the group to disable
+ * \return returns 0
+ */
+int playlist_DisableGroup( playlist_t * p_playlist, int i_group)
+{
+    vlc_value_t     val;
+    vlc_mutex_lock( &p_playlist->object_lock );
+    int i;
+
+    msg_Dbg(p_playlist,"Disabling group %i",i_group);
+    for( i = 0 ; i< p_playlist->i_size; i++ )
+    {
+        if( p_playlist->pp_items[i]->i_group == i_group )
+        {
+            msg_Dbg( p_playlist, "disabling playlist item « %s »",
+                           p_playlist->pp_items[i]->psz_name );
+
+            if( p_playlist->pp_items[i]->b_enabled == VLC_TRUE )
+                p_playlist->i_enabled--;
+
+            p_playlist->pp_items[i]->b_enabled = VLC_FALSE;
+        }
+    }
+    vlc_mutex_unlock( &p_playlist->object_lock );
+
+    val.b_bool = VLC_TRUE;
+    var_Set( p_playlist, "intf-change", val );
+
+    return 0;
+}
+
+/**
+ * Enables a playlist group
+ *
+ * \param p_playlist the playlist to enable from.
+ * \param i_pos the id of the group to enable
+ * \return returns 0
+ */
+int playlist_EnableGroup( playlist_t * p_playlist, int i_group)
+{
+    vlc_value_t     val;
+    vlc_mutex_lock( &p_playlist->object_lock );
+    int i;
+
+    for( i = 0 ; i< p_playlist->i_size; i++ )
+    {
+        if( p_playlist->pp_items[i]->i_group == i_group )
+        {
+            msg_Dbg( p_playlist, "enabling playlist item « %s »",
+                           p_playlist->pp_items[i]->psz_name );
+
+            if( p_playlist->pp_items[i]->b_enabled == VLC_FALSE )
+                p_playlist->i_enabled++;
+
+            p_playlist->pp_items[i]->b_enabled = VLC_TRUE;
+        }
+    }
+    vlc_mutex_unlock( &p_playlist->object_lock );
+
+    val.b_bool = VLC_TRUE;
+    var_Set( p_playlist, "intf-change", val );
+
+    return 0;
+}
+
+/**
+ * Sort the playlist
+ *
+ */
+int playlist_Sort( playlist_t * p_playlist , int i_type )
+{
+    int i , i_small , i_position;
+    playlist_item_t *p_temp;
+
+    vlc_mutex_lock( &p_playlist->object_lock );
+
+    for( i_position = 0; i_position < p_playlist->i_size -1 ; i_position ++ )
+    {
+        i_small  = i_position;
+        for( i = i_position + 1 ; i<  p_playlist->i_size ; i++)
+        {
+            int i_test;
+
+            i_test = strcasecmp( p_playlist->pp_items[i]->psz_name,
+                                 p_playlist->pp_items[i_small]->psz_name );
+
+            if( ( i_type == SORT_NORMAL  && i_test < 0 ) ||
+                ( i_type == SORT_REVERSE && i_test > 0 ) )
+            {
+                i_small = i;
+            }
+        }
+        /* Keep the correct current index */
+        if( i_small == p_playlist->i_index )
+            p_playlist->i_index = i_position;
+        else if( i_position == p_playlist->i_index )
+            p_playlist->i_index = i_small;
+
+        p_temp = p_playlist->pp_items[i_position];
+        p_playlist->pp_items[i_position] = p_playlist->pp_items[i_small];
+        p_playlist->pp_items[i_small] = p_temp;
+    }
+    vlc_mutex_unlock( &p_playlist->object_lock );
+
+    return 0;
+}
+
+/**
+ * Move an item in a playlist
+ *
  * Move the item in the playlist with position i_pos before the current item
  * at position i_newpos.
- *****************************************************************************/
+ * \param p_playlist the playlist to move items in
+ * \param i_pos the position of the item to move
+ * \param i_newpos the position of the item that will be behind the moved item
+ *        after the move
+ * \return returns 0
+ */
 int playlist_Move( playlist_t * p_playlist, int i_pos, int i_newpos)
 {
     vlc_value_t     val;
@@ -308,7 +567,7 @@ int playlist_Move( playlist_t * p_playlist, int i_pos, int i_newpos)
     /* take into account that our own row disappears. */
     if ( i_pos < i_newpos ) i_newpos--;
 
-    if( i_pos >= 0 && i_newpos >=0 && i_pos <= p_playlist->i_size 
+    if( i_pos >= 0 && i_newpos >=0 && i_pos <= p_playlist->i_size
                      && i_newpos <= p_playlist->i_size )
     {
         playlist_item_t * temp;
@@ -359,13 +618,18 @@ int playlist_Move( playlist_t * p_playlist, int i_pos, int i_newpos)
     return 0;
 }
 
-/*****************************************************************************
- * playlist_Command: do a playlist action
- *****************************************************************************
+/**
+ * Do a playlist action
  *
- *****************************************************************************/
-void playlist_Command( playlist_t * p_playlist, int i_command, int i_arg )
+ * \param p_playlist the playlist to do the command on
+ * \param i_command the command to do
+ * \param i_arg the argument to the command. See playlist_command_t for details
+ */
+ void playlist_Command( playlist_t * p_playlist, playlist_command_t i_command,
+                       int i_arg )
 {
+    vlc_value_t val;
+
     vlc_mutex_lock( &p_playlist->object_lock );
 
     switch( i_command )
@@ -380,9 +644,14 @@ void playlist_Command( playlist_t * p_playlist, int i_command, int i_arg )
 
     case PLAYLIST_PLAY:
         p_playlist->i_status = PLAYLIST_RUNNING;
+        if( !p_playlist->p_input && p_playlist->i_enabled != 0 )
+        {
+            PlayItem( p_playlist );
+        }
         if( p_playlist->p_input )
         {
-            input_SetStatus( p_playlist->p_input, INPUT_STATUS_PLAY );
+            val.i_int = PLAYING_S;
+            var_Set( p_playlist->p_input, "state", val );
         }
         break;
 
@@ -390,12 +659,17 @@ void playlist_Command( playlist_t * p_playlist, int i_command, int i_arg )
         p_playlist->i_status = PLAYLIST_PAUSED;
         if( p_playlist->p_input )
         {
-            input_SetStatus( p_playlist->p_input, INPUT_STATUS_PAUSE );
+            val.i_int = PAUSE_S;
+            var_Set( p_playlist->p_input, "state", val );
         }
         break;
 
     case PLAYLIST_SKIP:
         p_playlist->i_status = PLAYLIST_STOPPED;
+        if( p_playlist->i_enabled == 0)
+        {
+            break;
+        }
         SkipItem( p_playlist, i_arg );
         if( p_playlist->p_input )
         {
@@ -405,7 +679,8 @@ void playlist_Command( playlist_t * p_playlist, int i_command, int i_arg )
         break;
 
     case PLAYLIST_GOTO:
-        if( i_arg >= 0 && i_arg < p_playlist->i_size )
+        if( i_arg >= 0 && i_arg < p_playlist->i_size &&
+            p_playlist->i_enabled != 0 )
         {
             p_playlist->i_index = i_arg;
             if( p_playlist->p_input )
@@ -425,14 +700,65 @@ void playlist_Command( playlist_t * p_playlist, int i_command, int i_arg )
 
     return;
 }
-
 /* Following functions are local */
 
+static void ObjectGarbageCollector( playlist_t *p_playlist,
+                                    int i_type,
+                                    vlc_bool_t *pb_obj_destroyed,
+                                    mtime_t *pi_obj_destroyed_date )
+{
+    vlc_object_t *p_obj;
+    if( *pb_obj_destroyed || *pi_obj_destroyed_date > mdate() )
+    {
+        return;
+    }
+
+    if( *pi_obj_destroyed_date == 0 )
+    {
+        /* give a little time */
+        *pi_obj_destroyed_date = mdate() + 300000LL;
+    }
+    else
+    {
+        while( ( p_obj = vlc_object_find( p_playlist,
+                                           i_type,
+                                           FIND_CHILD ) ) )
+        {
+            if( p_obj->p_parent != (vlc_object_t*)p_playlist )
+            {
+                /* only first chiled (ie unused) */
+                vlc_object_release( p_obj );
+                break;
+            }
+            if( i_type == VLC_OBJECT_VOUT )
+            {
+                msg_Dbg( p_playlist, "vout garbage collector destroying 1 vout" );
+                vlc_object_detach( p_obj );
+                vlc_object_release( p_obj );
+                vout_Destroy( (vout_thread_t *)p_obj );
+            }
+            else if( i_type == VLC_OBJECT_SOUT )
+            {
+                vlc_object_release( p_obj );
+                sout_DeleteInstance( (sout_instance_t*)p_obj );
+            }
+        }
+        *pb_obj_destroyed = VLC_TRUE;
+    }
+}
+
 /*****************************************************************************
  * RunThread: main playlist thread
  *****************************************************************************/
 static void RunThread ( playlist_t *p_playlist )
 {
+    vlc_object_t *p_obj;
+    vlc_bool_t b_vout_destroyed = VLC_FALSE; /*we do vout garbage collector */
+    mtime_t    i_vout_destroyed_date = 0;
+
+    vlc_bool_t b_sout_destroyed = VLC_FALSE; /*we do vout garbage collector */
+    mtime_t    i_sout_destroyed_date = 0;
+
     /* Tell above that we're ready */
     vlc_thread_ready( p_playlist );
 
@@ -448,10 +774,8 @@ static void RunThread ( playlist_t *p_playlist )
             {
                 input_thread_t *p_input;
 
-                /* Unlink current input */
                 p_input = p_playlist->p_input;
                 p_playlist->p_input = NULL;
-                vlc_object_detach( p_input );
 
                 /* Release the playlist lock, because we may get stuck
                  * in input_DestroyThread() for some time. */
@@ -459,7 +783,17 @@ static void RunThread ( playlist_t *p_playlist )
 
                 /* Destroy input */
                 input_DestroyThread( p_input );
+
+                /* Unlink current input (_after_ input_DestroyThread for vout garbage collector)*/
+                vlc_object_detach( p_input );
+
+                /* Destroy object */
                 vlc_object_destroy( p_input );
+
+                b_vout_destroyed = VLC_FALSE;
+                i_vout_destroyed_date = 0;
+                b_sout_destroyed = VLC_FALSE;
+                i_sout_destroyed_date = 0;
                 continue;
             }
             /* This input is dying, let him do */
@@ -482,18 +816,36 @@ static void RunThread ( playlist_t *p_playlist )
                 /* Select the next playlist item */
                 SkipItem( p_playlist, 1 );
 
-                /* Release the playlist lock, because we may get stuck
-                 * in input_StopThread() for some time. */
-                vlc_mutex_unlock( &p_playlist->object_lock );
                 input_StopThread( p_playlist->p_input );
+                vlc_mutex_unlock( &p_playlist->object_lock );
                 continue;
             }
+            else if( p_playlist->p_input->stream.control.i_status != INIT_S )
+            {
+                vlc_mutex_unlock( &p_playlist->object_lock );
+                ObjectGarbageCollector( p_playlist, VLC_OBJECT_VOUT,
+                                        &b_vout_destroyed,
+                                        &i_vout_destroyed_date );
+                ObjectGarbageCollector( p_playlist, VLC_OBJECT_SOUT,
+                                        &b_sout_destroyed,
+                                        &i_sout_destroyed_date );
+                vlc_mutex_lock( &p_playlist->object_lock );
+            }
         }
         else if( p_playlist->i_status != PLAYLIST_STOPPED )
         {
+            SkipItem( p_playlist, 0 );
             PlayItem( p_playlist );
         }
-
+        else if( p_playlist->i_status == PLAYLIST_STOPPED )
+        {
+            vlc_mutex_unlock( &p_playlist->object_lock );
+            ObjectGarbageCollector( p_playlist, VLC_OBJECT_SOUT,
+                                    &b_sout_destroyed, &i_sout_destroyed_date );
+            ObjectGarbageCollector( p_playlist, VLC_OBJECT_VOUT,
+                                    &b_vout_destroyed, &i_vout_destroyed_date );
+            vlc_mutex_lock( &p_playlist->object_lock );
+        }
         vlc_mutex_unlock( &p_playlist->object_lock );
 
         msleep( INTF_IDLE_SLEEP );
@@ -517,11 +869,15 @@ static void RunThread ( playlist_t *p_playlist )
             /* Unlink current input */
             p_input = p_playlist->p_input;
             p_playlist->p_input = NULL;
-            vlc_object_detach( p_input );
             vlc_mutex_unlock( &p_playlist->object_lock );
 
             /* Destroy input */
             input_DestroyThread( p_input );
+            /* Unlink current input (_after_ input_DestroyThread for vout
+             * garbage collector)*/
+            vlc_object_detach( p_input );
+
+            /* Destroy object */
             vlc_object_destroy( p_input );
             continue;
         }
@@ -532,8 +888,8 @@ static void RunThread ( playlist_t *p_playlist )
         }
         else if( p_playlist->p_input->b_error || p_playlist->p_input->b_eof )
         {
-            vlc_mutex_unlock( &p_playlist->object_lock );
             input_StopThread( p_playlist->p_input );
+            vlc_mutex_unlock( &p_playlist->object_lock );
             continue;
         }
         else
@@ -545,6 +901,23 @@ static void RunThread ( playlist_t *p_playlist )
 
         msleep( INTF_IDLE_SLEEP );
     }
+
+    /* close all remaining sout */
+    while( ( p_obj = vlc_object_find( p_playlist,
+                                      VLC_OBJECT_SOUT, FIND_CHILD ) ) )
+    {
+        vlc_object_release( p_obj );
+        sout_DeleteInstance( (sout_instance_t*)p_obj );
+    }
+
+    /* close all remaining vout */
+    while( ( p_obj = vlc_object_find( p_playlist,
+                                      VLC_OBJECT_VOUT, FIND_CHILD ) ) )
+    {
+        vlc_object_detach( p_obj );
+        vlc_object_release( p_obj );
+        vout_Destroy( (vout_thread_t *)p_obj );
+    }
 }
 
 /*****************************************************************************
@@ -556,8 +929,10 @@ static void RunThread ( playlist_t *p_playlist )
 static void SkipItem( playlist_t *p_playlist, int i_arg )
 {
     int i_oldindex = p_playlist->i_index;
-    vlc_bool_t b_random;
+    vlc_bool_t b_random, b_repeat, b_loop;
+    vlc_value_t val;
 
+    msg_Dbg(p_playlist,"%i",p_playlist->i_enabled);
     /* If the playlist is empty, there is no current item */
     if( p_playlist->i_size == 0 )
     {
@@ -565,7 +940,12 @@ static void SkipItem( playlist_t *p_playlist, int i_arg )
         return;
     }
 
-    b_random = config_GetInt( p_playlist, "random" );
+    var_Get( p_playlist, "random", &val );
+    b_random = val.b_bool;
+    var_Get( p_playlist, "repeat", &val );
+    b_repeat = val.b_bool;
+    var_Get( p_playlist, "loop", &val );
+    b_loop = val.b_bool;
 
     /* Increment */
     if( b_random )
@@ -580,7 +960,10 @@ static void SkipItem( playlist_t *p_playlist, int i_arg )
             i_arg = (int)((float)p_playlist->i_size * rand() / (RAND_MAX+1.0));
         }
     }
-
+    if( b_repeat )
+    {
+        i_arg = 0;
+    }
     p_playlist->i_index += i_arg;
 
     /* Boundary check */
@@ -588,7 +971,7 @@ static void SkipItem( playlist_t *p_playlist, int i_arg )
     {
         if( p_playlist->i_status == PLAYLIST_STOPPED
              || b_random
-             || config_GetInt( p_playlist, "loop" ) )
+             || b_loop )
         {
             p_playlist->i_index -= p_playlist->i_size
                          * ( p_playlist->i_index / p_playlist->i_size );
@@ -604,6 +987,15 @@ static void SkipItem( playlist_t *p_playlist, int i_arg )
     {
         p_playlist->i_index = p_playlist->i_size - 1;
     }
+
+    /* Check that the item is enabled */
+   if( p_playlist->pp_items[p_playlist->i_index]->b_enabled == VLC_FALSE &&
+       p_playlist->i_enabled != 0)
+   {
+        SkipItem( p_playlist , 1 );
+    }
+    val.b_bool = VLC_TRUE;
+    var_Set( p_playlist, "intf-change", val );
 }
 
 /*****************************************************************************
@@ -616,7 +1008,7 @@ static void PlayItem( playlist_t *p_playlist )
 {
     if( p_playlist->i_index == -1 )
     {
-        if( p_playlist->i_size == 0 )
+        if( p_playlist->i_size == 0 || p_playlist->i_enabled == 0)
         {
             return;
         }
@@ -624,6 +1016,11 @@ static void PlayItem( playlist_t *p_playlist )
         SkipItem( p_playlist, 1 );
     }
 
+    if( p_playlist->i_enabled == 0)
+    {
+        return;
+    }
+
     msg_Dbg( p_playlist, "creating new input thread" );
     p_playlist->p_input = input_CreateThread( p_playlist,
                                   p_playlist->pp_items[p_playlist->i_index] );
@@ -647,6 +1044,7 @@ int playlist_LoadFile( playlist_t * p_playlist, const char *psz_filename )
     FILE *file;
     char line[1024];
     int i_current_status;
+    int i_format;
     int i;
 
     msg_Dbg( p_playlist, "opening playlist file %s", psz_filename );
@@ -674,7 +1072,15 @@ int playlist_LoadFile( playlist_t * p_playlist, const char *psz_filename )
        if( line[strlen(line)-1] == '\r' ) line[strlen(line)-1] = (char)0;
     }
     /* check the file format is valid */
-    if ( strcmp ( line , PLAYLIST_FILE_HEADER_0_5 ) )
+    if ( !strcmp ( line , PLAYLIST_FILE_HEADER_0_5 ) )
+    {
+       i_format = 5;
+    }
+    else if( !strcmp ( line , PLAYLIST_FILE_HEADER_0_6 ) )
+    {
+       i_format = 6;
+    }
+    else
     {
         msg_Err( p_playlist, "playlist file %s format is unsupported"
                 , psz_filename );
@@ -709,8 +1115,15 @@ int playlist_LoadFile( playlist_t * p_playlist, const char *psz_filename )
            line[strlen(line)-1] = (char)0;
            if( line[strlen(line)-1] == '\r' ) line[strlen(line)-1] = (char)0;
        }
-
-       playlist_Add ( p_playlist , (char*) &line , PLAYLIST_APPEND , PLAYLIST_END );
+       if( i_format == 5 )
+       {
+           playlist_Add ( p_playlist , (char *)&line ,
+                      0, 0, PLAYLIST_APPEND , PLAYLIST_END );
+       }
+       else
+       {
+           msg_Warn( p_playlist, "Not supported yet");
+       }
     }
 
     /* start playing */
@@ -743,6 +1156,7 @@ int playlist_SaveFile( playlist_t * p_playlist, const char * psz_filename )
                 , psz_filename );
         return -1;
     }
+    /* Save is done in 0_5 mode at the moment*/
 
     fprintf( file , PLAYLIST_FILE_HEADER_0_5 "\n" );
 
@@ -751,7 +1165,24 @@ int playlist_SaveFile( playlist_t * p_playlist, const char * psz_filename )
         fprintf( file , p_playlist->pp_items[i]->psz_uri );
         fprintf( file , "\n" );
     }
+#if 0
+    fprintf( file, PLAYLIST_FILE_HEADER_0_6 "\n" );
 
+    for ( i=0 ; i< p_playlist->i_size ; i++ )
+    {
+        fprintf( file, p_playlist->pp_items[i]->psz_uri );
+        fprintf( file, "||" );
+        fprintf( file, p_playlist->pp_items[i]->psz_name );
+        fprintf( file, "||" );
+        fprintf( file, "%i",p_playlist->pp_items[i]->b_enabled = VLC_TRUE ?
+                       1:0 );
+        fprintf( file, "||" );
+        fprintf( file, "%i", p_playlist->pp_items[i]->i_group );
+        fprintf( file, "||" );
+        fprintf( file, p_playlist->pp_items[i]->psz_author );
+        fprintf( file , "\n" );
+    }
+#endif
     fclose( file );
 
     vlc_mutex_unlock( &p_playlist->object_lock );