]> git.sesse.net Git - vlc/blobdiff - modules/demux/playlist/pls.c
A bit of headers cleanup
[vlc] / modules / demux / playlist / pls.c
index 816cdbb2aa94cf0140fb78e1b5102a7cf34e7ee0..bf1b2a4ba0b16e6876b0b1b6dcb76ed2b896b983 100644 (file)
@@ -26,8 +26,7 @@
  * Preamble
  *****************************************************************************/
 #include <vlc/vlc.h>
-#include <vlc/input.h>
-#include <vlc/intf.h>
+#include <vlc_demux.h>
 
 #include "playlist.h"
 
@@ -158,7 +157,7 @@ static int Demux( demux_t *p_demux )
                 input_ItemCopyOptions( p_current->p_input, p_input );
                 playlist_BothAddInput( p_playlist, p_input, p_item_in_category,
                                        PLAYLIST_APPEND | PLAYLIST_SPREPARSE,
-                                       PLAYLIST_END );
+                                       PLAYLIST_END, NULL, NULL );
             }
             else
             {
@@ -215,7 +214,7 @@ static int Demux( demux_t *p_demux )
         input_ItemCopyOptions( p_current->p_input, p_input );
         playlist_BothAddInput( p_playlist, p_input, p_item_in_category,
                                PLAYLIST_APPEND | PLAYLIST_SPREPARSE,
-                               PLAYLIST_END );
+                               PLAYLIST_END, NULL, NULL );
         free( psz_mrl_orig );
         psz_mrl = NULL;
     }