]> git.sesse.net Git - vlc/blobdiff - src/control/media_list_path.h
Removes trailing spaces. Removes tabs.
[vlc] / src / control / media_list_path.h
index 238e8d014350a6d4df970f04d17e8646a9aa3ab9..cc739c14588ffcfd96e29fdc3f3895f40b62c34a 100644 (file)
 #ifndef _LIBVLC_MEDIA_LIST_PATH_H
 #define _LIBVLC_MEDIA_LIST_PATH_H 1
 
-/**************************************************************************
- *  Definition (Media List Player Internal)
- **************************************************************************/
-typedef int * libvlc_media_list_path_t;
-
-
 /**************************************************************************
  *       path_empty (Media List Player Internal)
  **************************************************************************/
@@ -164,7 +158,7 @@ libvlc_media_list_item_at_path( libvlc_media_list_t * p_mlist, libvlc_media_list
 
         p_current_mlist = libvlc_media_descriptor_subitems( p_md, NULL );
         libvlc_media_descriptor_release( p_md );
-    
         if( !p_current_mlist )
             return NULL;
 
@@ -173,7 +167,7 @@ libvlc_media_list_item_at_path( libvlc_media_list_t * p_mlist, libvlc_media_list
     /* Not found, shouldn't happen if the p_path is not empty */
     if( p_current_mlist != p_mlist )
         libvlc_media_list_release( p_current_mlist );
-    return NULL; 
+    return NULL;
 }
 
 /**************************************************************************
@@ -197,7 +191,7 @@ libvlc_media_list_parentlist_at_path( libvlc_media_list_t * p_mlist, libvlc_medi
 
         p_current_mlist = libvlc_media_descriptor_subitems( p_md, NULL );
         libvlc_media_descriptor_release( p_md );
-    
         if( !p_current_mlist )
             return NULL;
 
@@ -206,7 +200,7 @@ libvlc_media_list_parentlist_at_path( libvlc_media_list_t * p_mlist, libvlc_medi
     /* Not found, shouldn't happen if the p_path is not empty */
     if( p_current_mlist != p_mlist )
         libvlc_media_list_release( p_current_mlist );
-    return NULL; 
+    return NULL;
 }
 
 /**************************************************************************
@@ -219,11 +213,11 @@ libvlc_media_list_sublist_at_path( libvlc_media_list_t * p_mlist, libvlc_media_l
     libvlc_media_descriptor_t * p_md = libvlc_media_list_item_at_path( p_mlist, path );
     if( !p_md )
         return NULL;
-    
     ret = libvlc_media_descriptor_subitems( p_md, NULL );
     libvlc_media_descriptor_release( p_md );
-    
-    return ret; 
+    return ret;
 }
 
 #endif