]> git.sesse.net Git - vlc/commitdiff
Revert [23949].
authorPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 1 Jan 2008 18:03:56 +0000 (18:03 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 1 Jan 2008 18:03:56 +0000 (18:03 +0000)
18 files changed:
include/vlc_events.h
include/vlc_input.h
modules/demux/playlist/asx.c
modules/demux/playlist/b4s.c
modules/demux/playlist/dvb.c
modules/demux/playlist/gvp.c
modules/demux/playlist/ifo.c
modules/demux/playlist/itml.c
modules/demux/playlist/m3u.c
modules/demux/playlist/pls.c
modules/demux/playlist/podcast.c
modules/demux/playlist/qtl.c
modules/demux/playlist/sgimb.c
modules/demux/playlist/shoutcast.c
modules/demux/playlist/xspf.c
modules/misc/lua/vlc.c
src/playlist/item.c
src/playlist/loadsave.c

index 29a89149b1b15a3e3641ab68282a6dc8c174ff0b..22aa6e47834e37e5b64a4eb849492efedbc8759f 100644 (file)
@@ -140,7 +140,6 @@ typedef struct vlc_event_t
         struct vlc_input_item_subitem_added
         {
             input_item_t * p_new_child;
-            vlc_bool_t b_node;
         } input_item_subitem_added;
         struct vlc_input_item_duration_changed
         {
index 08d13d8b888a7b2c5d4887e78c96a94801e1b2a4..8d3b94f40ff5c576ac115ee075bf4244449e9bb8 100644 (file)
@@ -125,8 +125,7 @@ static inline void input_item_SetName( input_item_t *p_item, const char *psz_nam
  * It is not the input item's responsability to keep all the ref of
  * the input item children. */
 static inline void input_ItemAddSubItem( input_item_t *p_parent,
-                                         input_item_t *p_child, 
-                                         vlc_bool_t b_node )
+                                         input_item_t *p_child )
 {
     vlc_event_t event;
 
@@ -135,7 +134,6 @@ static inline void input_ItemAddSubItem( input_item_t *p_parent,
     /* Notify interested third parties */
     event.type = vlc_InputItemSubItemAdded;
     event.u.input_item_subitem_added.p_new_child = p_child;
-    event.u.input_item_subitem_added.b_node = b_node;
     vlc_event_send( &p_parent->event_manager, &event );
 }
 
index 18740d571dc986295ba77e8a5564f6cfdf3b9a4f..7ff18acd6aeba601c92eeaac7d2a3e030d7079c7 100644 (file)
@@ -457,7 +457,7 @@ static int Demux( demux_t *p_demux )
                             psz_string[i_strlen] = '\0';
                             p_input = input_ItemNew( p_playlist, psz_string, psz_title_asx );
                             input_ItemCopyOptions( p_current_input, p_input );
-                            input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+                            input_ItemAddSubItem( p_current_input, p_input );
                             free( psz_string );
                         }
                         else continue;
@@ -526,7 +526,7 @@ static int Demux( demux_t *p_demux )
                     if( psz_copyright_entry ) input_item_SetCopyright( p_entry, psz_copyright_entry );
                     if( psz_moreinfo_entry ) input_item_SetURL( p_entry, psz_moreinfo_entry );
                     if( psz_abstract_entry ) input_item_SetDescription( p_entry, psz_abstract_entry );
-                    input_ItemAddSubItem( p_current_input, p_entry, VLC_FALSE );
+                    input_ItemAddSubItem( p_current_input, p_entry );
                     vlc_gc_decref( p_entry );
                 }
 
index c2782656b09b4720ee522924668c18255498dd42..7f0fe7639492740f190628a19ac034fc278bce3c 100644 (file)
@@ -265,7 +265,7 @@ static int Demux( demux_t *p_demux )
                     if( psz_bitrate )
                         msg_Err( p_playlist, "Unsupported meta bitrate" );
 
-                    input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+                    input_ItemAddSubItem( p_current_input, p_input );
                     vlc_gc_decref( p_input );
                     FREENULL( psz_name );
                     FREENULL( psz_mrl );
index 5e3edb5ce18242b44c5bba029886a316d5769a34..31fefceb638549ea4ba54fdebad31d27f8288457 100644 (file)
@@ -118,7 +118,7 @@ static int Demux( demux_t *p_demux )
             EnsureUTF8( ppsz_options[i] );
             input_ItemAddOption( p_input, ppsz_options[i] );
         }
-        input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+        input_ItemAddSubItem( p_current_input, p_input );
         vlc_gc_decref( p_input );
         while( i_options-- ) free( ppsz_options[i_options] );
         if( ppsz_options ) free( ppsz_options );
index 567d8f8f28c3a82c10d2b9a38097b728254b3061..f9883e12485065cfd2c1a20f6942af4fe2e20db5 100644 (file)
@@ -209,7 +209,7 @@ static int Demux( demux_t *p_demux )
         SADD_INFO( "gvp_version", psz_version );
         SADD_INFO( "docid", psz_docid );
         SADD_INFO( "description", psz_description );
-        input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+        input_ItemAddSubItem( p_current_input, p_input );
         vlc_gc_decref( p_input );
     }
 
index 87058231355c96a5447213646d1cbbfe09cc44c9..0cd978fe0ce301c3bd5262c65426bb8f7326f28b 100644 (file)
@@ -91,7 +91,7 @@ static int Demux( demux_t *p_demux )
     snprintf( psz_url, len+1, "dvd://%s", p_demux->psz_path );
 
     p_input = input_ItemNewExt( p_playlist, psz_url, psz_url, 0, NULL, -1 );
-    input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+    input_ItemAddSubItem( p_current_input, p_input );
     vlc_gc_decref( p_input );
 
     HANDLE_PLAY_AND_RELEASE;
index bedd5555d515561351b6de226065313198270714..fab553db779e9f6c33e4fc4ad32baf0a08a03dc1 100644 (file)
@@ -374,7 +374,7 @@ static vlc_bool_t parse_track_dict COMPLEX_INTERFACE
 
             p_new_input = input_ItemNewExt( p_playlist, psz_uri,
                                             NULL, 0, NULL, -1 );
-            input_ItemAddSubItem( p_input_item, p_new_input, VLC_FALSE );
+            input_ItemAddSubItem( p_input_item, p_new_input );
 
             /* add meta info */
             add_meta( p_new_input, p_track );
index 41c7a63bcc035f308a15fb0af5b6807a9e069c0b..109600d950906f5d2ef3313b75c79afe728b1a6e 100644 (file)
@@ -192,7 +192,7 @@ static int Demux( demux_t *p_demux )
             if ( psz_artist && *psz_artist )
                 input_ItemAddInfo( p_input, _(VLC_META_INFO_CAT),
                                    _(VLC_META_ARTIST), "%s", psz_artist );
-            input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+            input_ItemAddSubItem( p_current_input, p_input );
             vlc_gc_decref( p_input );
             free( psz_mrl );
         }
index fdde1b70d2abcf0ce374f7a49cfe72cc70eab62d..ef7d059f96346e2163b75f589397e354d119ea90 100644 (file)
@@ -161,7 +161,7 @@ static int Demux( demux_t *p_demux )
                 p_input = input_ItemNewExt( p_playlist, psz_mrl, psz_name,
                                             0, NULL, -1 );
                 input_ItemCopyOptions( p_current_input, p_input );
-                input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+                input_ItemAddSubItem( p_current_input, p_input );
                 vlc_gc_decref( p_input );
             }
             else
@@ -221,7 +221,7 @@ static int Demux( demux_t *p_demux )
     {
         p_input = input_ItemNewExt( p_playlist, psz_mrl, psz_name,0, NULL, -1 );
         input_ItemCopyOptions( p_current_input, p_input );
-        input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+        input_ItemAddSubItem( p_current_input, p_input );
         vlc_gc_decref( p_input );
         free( psz_mrl_orig );
         psz_mrl = NULL;
index c4fabb5ad1dd85f6721e59c6de8018494f9f5856..30ef2f493590ab511ae28e935bcdf6e07bdfe14a 100644 (file)
@@ -288,7 +288,7 @@ static int Demux( demux_t *p_demux )
                                                 "%s bytes",
                                                 psz_item_size );
                     }
-                    input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+                    input_ItemAddSubItem( p_current_input, p_input );
                     vlc_gc_decref( p_input );
                     FREENULL( psz_item_name );
                     FREENULL( psz_item_mrl );
index 2a2ef6f3cd90b325e36a6c9859984e81dd8f774a..4ad9f5cf4c806d9e4bc4745578d997a3b2dc64d7 100644 (file)
@@ -356,13 +356,13 @@ static int Demux( demux_t *p_demux )
                     p_input, "QuickTime Media Link", _(type), "%s", field ) ; }
         SADD_INFO( "href", psz_href );
         SADD_INFO( "mime type", psz_mimetype );
-        input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+        input_ItemAddSubItem( p_current_input, p_input );
         vlc_gc_decref( p_input );
         if( psz_qtnext )
         {
             p_input = input_ItemNewExt( p_sys->p_playlist,
                                         psz_qtnext, NULL, 0, NULL, -1 );
-            input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
+            input_ItemAddSubItem( p_current_input, p_input );
             vlc_gc_decref( p_input );
         }
     }
index d574db93b35682baa6a68645241a676eb67ddd8d..8a9ddd6369d71f1702f64eac4395f4d980feafb0 100644 (file)
@@ -404,7 +404,7 @@ static int Demux ( demux_t *p_demux )
         free( psz_option );
     }
 
-    input_ItemAddSubItem( p_current_input, p_child, VLC_FALSE );
+    input_ItemAddSubItem( p_current_input, p_child );
     vlc_gc_decref( p_child );
     HANDLE_PLAY_AND_RELEASE
     return 0; /* Needed for correct operation of go back */
index 72457a22178d15fe4935746066a713eb67cc20de..9059da269db7caad7fcaa55bbcef1ab761d42d2d 100644 (file)
@@ -235,7 +235,7 @@ static int DemuxGenre( demux_t *p_demux )
                     input_ItemCopyOptions( p_sys->p_current_input,
                                                 p_input );
                     free( psz_mrl );
-                    input_ItemAddSubItem( p_sys->p_current_input, p_input, VLC_FALSE );
+                    input_ItemAddSubItem( p_sys->p_current_input, p_input );
                     vlc_gc_decref( p_input );
                     FREENULL( psz_name );
                 }
@@ -423,7 +423,7 @@ static int DemuxStation( demux_t *p_demux )
                         input_item_SetNowPlaying( p_input, psz_ct );
                     if( psz_rt )
                         input_item_SetRating( p_input, psz_rt );
-                    input_ItemAddSubItem( p_sys->p_current_input, p_input, VLC_FALSE );
+                    input_ItemAddSubItem( p_sys->p_current_input, p_input );
                     vlc_gc_decref( p_input );
                     FREENULL( psz_name );
                     FREENULL( psz_mt );
index 4b9c2b6994f67112f5eaa1e80431f6a5f10203d4..7b3e74737897342c00dbe2c58c79a9ef2652da3c 100644 (file)
@@ -125,8 +125,9 @@ int Demux( demux_t *p_demux )
     {
         input_item_t *p_new_input = p_demux->p_sys->pp_tracklist[i];
         if( p_new_input )
-            input_ItemAddSubItem( p_current_input, p_new_input, VLC_FALSE );
-        vlc_gc_decref( p_new_input );
+        {
+            input_ItemAddSubItem( p_current_input, p_new_input );
+        }
     }
 
     HANDLE_PLAY_AND_RELEASE;
@@ -488,9 +489,13 @@ static vlc_bool_t parse_track_node COMPLEX_INTERFACE
                 if( !strcmp( psz_name, psz_element ) )
                 {
                     FREE_ATT();
-                    if( p_demux->p_sys->i_identifier == -1 ||
-                        p_demux->p_sys->i_identifier ==
+                    if( p_demux->p_sys->i_identifier <
                         p_demux->p_sys->i_tracklist_entries )
+                    {
+                        p_demux->p_sys->pp_tracklist[
+                            p_demux->p_sys->i_identifier ] = p_new_input;
+                    }
+                    else
                     {
                         if( p_demux->p_sys->i_identifier >
                             p_demux->p_sys->i_tracklist_entries )
@@ -502,13 +507,6 @@ static vlc_bool_t parse_track_node COMPLEX_INTERFACE
                                      p_demux->p_sys->i_tracklist_entries,
                                      p_demux->p_sys->i_tracklist_entries,
                                      p_new_input );
-                        p_demux->p_sys->i_identifier = -1; 
-                    }
-                    else
-                    {
-                        msg_Err( p_demux, "Invalid identifier %d", p_demux->p_sys->i_identifier );
-                        p_demux->p_sys->i_identifier = -1;
-                        return VLC_FALSE;
                     }
                     return VLC_TRUE;
                 }
@@ -538,29 +536,19 @@ static vlc_bool_t parse_track_node COMPLEX_INTERFACE
 
                     if( psz_uri )
                     {
-                        if( ( p_demux->p_sys->psz_base ||
-                              strrchr( p_demux->psz_path, DIR_SEP_CHAR ) ) &&
+                        if( p_demux->p_sys->psz_base &&
                             !strstr( psz_uri, "://" ) )
                         {
-                           char *psz_baseref = p_demux->p_sys->psz_base;
-                           size_t i_baselen;
-                           if( psz_baseref )
-                               i_baselen = strlen( psz_baseref );
-                           else
-                           {
-                               psz_baseref = p_demux->psz_path;
-                               i_baselen = strrchr( psz_baseref, DIR_SEP_CHAR )
-                                            - psz_baseref + 1;
-                           }
-                           char* psz_tmp = malloc( i_baselen +
-                                   strlen( psz_uri ) + 1 );
+                           char* psz_tmp = malloc(
+                                   strlen(p_demux->p_sys->psz_base) +
+                                   strlen(psz_uri) +1 );
                            if( !psz_tmp )
                            {
                                msg_Err( p_demux, "out of memory");
                                return VLC_FALSE;
                            }
-                           strncpy( psz_tmp, psz_baseref, i_baselen );
-                           strcpy( psz_tmp + i_baselen, psz_uri );
+                           sprintf( psz_tmp, "%s%s",
+                                    p_demux->p_sys->psz_base, psz_uri );
                            free( psz_uri );
                            psz_uri = psz_tmp;
                         }
@@ -579,8 +567,7 @@ static vlc_bool_t parse_track_node COMPLEX_INTERFACE
                         return VLC_FALSE;
                     }
                 }
-                else if( !strcmp( p_handler->name, "identifier" ) && 
-                        *psz_value >= '0' && *psz_value <= '9' )
+                else if( !strcmp( p_handler->name, "identifier" ) )
                 {
                     p_demux->p_sys->i_identifier = atoi( psz_value );
                 }
@@ -725,11 +712,11 @@ static vlc_bool_t parse_extension_node COMPLEX_INTERFACE
             msg_Warn( p_demux, "<node> requires \"title\" attribute" );
             return VLC_FALSE;
         }
-        p_new_input = input_ItemNewWithType( VLC_OBJECT(p_playlist), "vlc:nop",
+        p_new_input = input_ItemNewWithType( VLC_OBJECT( p_playlist ), "vlc:skip",
                                 psz_title, 0, NULL, -1, ITEM_TYPE_DIRECTORY );
         if( p_new_input )
         {
-            input_ItemAddSubItem( p_input_item, p_new_input, VLC_TRUE );
+            input_ItemAddSubItem( p_input_item, p_new_input );
             p_input_item = p_new_input;
         }
         free( psz_title );
@@ -904,9 +891,8 @@ static vlc_bool_t parse_extitem_node COMPLEX_INTERFACE
     p_new_input = p_demux->p_sys->pp_tracklist[ i_href ];
     if( p_new_input )
     {
-        input_ItemAddSubItem( p_input_item, p_new_input, VLC_FALSE );
+        input_ItemAddSubItem( p_input_item, p_new_input );
         p_demux->p_sys->pp_tracklist[i_href] = NULL;
-        vlc_gc_decref( p_new_input );
     }
 
     /* kludge for #1293 - XTAG sends ENDELEM for self closing tag */
index 4a7880111c3ee41bdb49a535a15509fcb0e1a6d4..cd0fac03b024269463b1f1c7cb18677b1260f133 100644 (file)
@@ -743,7 +743,7 @@ int __vlclua_playlist_add_internal( vlc_object_t *p_this, lua_State *L,
 
                     /* Append item to playlist */
                     if( p_parent ) /* Add to node */
-                        input_ItemAddSubItem( p_parent, p_input, VLC_FALSE );
+                        input_ItemAddSubItem( p_parent, p_input );
                     else if( b_play ) /* Play */
                         playlist_AddInput( p_playlist, p_input,
                                            PLAYLIST_APPEND | PLAYLIST_GO,
index b4787b1ea1a25028351aea318c1409025715a74e..0a288d2eb3c539346df09ad981d7bdbf4d3184e0 100644 (file)
@@ -45,11 +45,10 @@ static void input_item_subitem_added( const vlc_event_t * p_event,
     input_item_t * p_parent, * p_child;
     playlist_item_t * p_child_in_category;
     playlist_item_t * p_item_in_category;
-    vlc_bool_t b_play, b_node;
+    vlc_bool_t b_play;
 
     p_parent = p_event->p_obj;
     p_child = p_event->u.input_item_subitem_added.p_new_child;
-    b_node = p_event->u.input_item_subitem_added.b_node;
 
     PL_LOCK;
     b_play = var_CreateGetBool( p_playlist, "playlist-autostart" );
@@ -65,6 +64,7 @@ static void input_item_subitem_added( const vlc_event_t * p_event,
 
     if( !p_child_in_category )
     {
+        /* Then, transform to a node if needed */
         p_item_in_category = playlist_ItemFindFromInputAndRoot(
                                 p_playlist, p_parent->i_id,
                                 p_playlist->p_root_category,
@@ -78,24 +78,18 @@ static void input_item_subitem_added( const vlc_event_t * p_event,
 
         b_play = b_play && p_item_in_category == p_playlist->status.p_item;
 
-        /* If you want to use vlc_input_item_subitem_added event, 
-         * you must explicitely create nodes */
-        assert( p_item_in_category->i_children != -1 );
-
+        /* If this item is already a node don't transform it */
+        if( p_item_in_category->i_children == -1 )
+        {
+            p_item_in_category = playlist_ItemToNode( p_playlist,
+                    p_item_in_category, VLC_TRUE );
+            p_item_in_category->p_input->i_type = ITEM_TYPE_PLAYLIST;
+        }
         playlist_BothAddInput( p_playlist, p_child, p_item_in_category,
                 PLAYLIST_APPEND | PLAYLIST_SPREPARSE , PLAYLIST_END,
                 NULL, NULL,  VLC_TRUE );
 
-        if( b_node )
-        {
-            playlist_item_t *p_pl_item, *p_new_pl_item;
-            p_pl_item = playlist_ItemFindFromInputAndRoot( p_playlist, 
-                    p_child->i_id, p_playlist->p_root_category, VLC_FALSE );
-            p_new_pl_item = playlist_ItemToNode( p_playlist, p_pl_item,
-                    VLC_TRUE );
-            p_new_pl_item->p_input->i_type = ITEM_TYPE_NODE;
-        }
-
         if( b_play )
         {
             playlist_Control( p_playlist, PLAYLIST_VIEWPLAY,
@@ -418,6 +412,7 @@ playlist_item_t * playlist_NodeAddInput( playlist_t *p_playlist,
 /**
  * Transform an item to a node. Return the node in the category tree, or NULL
  * if not found there
+ * This function must be entered without the playlist lock
  */
 playlist_item_t *playlist_ItemToNode( playlist_t *p_playlist,
                                       playlist_item_t *p_item,
index 14bb545610ae4940fd180706f62f91064218b60c..bdd6b377def09f454f797eab8b6226876c4c69e9 100644 (file)
@@ -96,7 +96,6 @@ static void input_item_subitem_added( const vlc_event_t * p_event,
 {
     playlist_t *p_playlist = user_data;
     input_item_t *p_item = p_event->u.input_item_subitem_added.p_new_child;
-    vlc_bool_t b_node = p_event->u.input_item_subitem_added.b_node;
 
     /* The media library input has one and only one option: "meta-file"
      * So we remove that unneeded option. */
@@ -108,15 +107,6 @@ static void input_item_subitem_added( const vlc_event_t * p_event,
 
     playlist_AddInput( p_playlist, p_item, PLAYLIST_APPEND, PLAYLIST_END,
             VLC_FALSE, VLC_FALSE );
-
-    if( b_node )
-    {
-        playlist_item_t *p_pl_item, *p_new_pl_item;
-        p_pl_item = playlist_ItemFindFromInputAndRoot( p_playlist, p_item->i_id,
-                                    p_playlist->p_root_category, VLC_FALSE );
-        p_new_pl_item = playlist_ItemToNode( p_playlist, p_pl_item, VLC_FALSE );
-        p_new_pl_item->p_input->i_type = ITEM_TYPE_NODE;
-    }
 }
 
 int playlist_MLLoad( playlist_t *p_playlist )