]> git.sesse.net Git - vlc/commitdiff
libvlc_media_list: remove unused feature
authorRafaël Carré <funman@videolan.org>
Wed, 29 Feb 2012 19:14:46 +0000 (14:14 -0500)
committerRafaël Carré <funman@videolan.org>
Wed, 29 Feb 2012 19:23:05 +0000 (14:23 -0500)
lib/media_list.c
lib/media_list_internal.h

index 749d3c5a2013013a9485b009c9b7bf4f9fa701b5..1d5702539eace11e9bbb47d469f99b123fe0faaa 100644 (file)
@@ -166,8 +166,6 @@ libvlc_media_list_new( libvlc_instance_t * p_inst )
         return NULL;
     }
 
-    /* Code for that one should be handled in flat_media_list.c */
-    p_mlist->p_flat_mlist = NULL;
     p_mlist->b_read_only = false;
 
     libvlc_event_manager_register_event_type( p_mlist->p_event_manager,
index 5cbbbd73bef8cc05a83ab527c103dbeb2ecf11e6..8df6579a80a103284310e9450b6e31de023d5653 100644 (file)
@@ -46,10 +46,6 @@ struct libvlc_media_list_t
                                        * mlist comes, if any. */
     vlc_array_t                items;
 
-    /* Other way to see that media list */
-    /* Used in flat_media_list.c */
-    libvlc_media_list_t *       p_flat_mlist;
-
     /* This indicates if this media list is read-only
      * from a user point of view */
     bool                  b_read_only;