]> git.sesse.net Git - vlc/commitdiff
libvlc: Remove unused function.
authorPierre d'Herbemont <pdherbemont@free.fr>
Mon, 24 Aug 2009 15:53:59 +0000 (17:53 +0200)
committerPierre d'Herbemont <pdherbemont@free.fr>
Mon, 24 Aug 2009 15:53:59 +0000 (17:53 +0200)
test/libvlc/libvlc_additions.h

index 4c8fb4cbc4f76e097808c790b47c435564fc2cc5..e029ad748b30e14196e0e5a5a02b1b7071923f45 100644 (file)
@@ -31,24 +31,3 @@ static void* media_list_add_file_path(libvlc_instance_t *vlc, libvlc_media_list_
     return md;
 }
 
-static libvlc_media_list_player_t *media_list_player_with_root_media(libvlc_instance_t *vlc, libvlc_media_t *m)
-{
-    libvlc_media_list_t *ml;
-    libvlc_media_list_player_t *mlp;
-    
-    libvlc_exception_init (&ex);
-    
-    ml = libvlc_media_list_new (vlc, &ex);
-    catch ();
-    
-    mlp = libvlc_media_list_player_new (vlc, &ex);
-    
-    libvlc_media_list_add_media(ml, m, &ex);
-    catch ();
-    
-    libvlc_media_list_player_set_media_list(mlp, ml, &ex);
-    catch ();
-    
-    return mlp;
-}
-