]> git.sesse.net Git - vlc/blobdiff - modules/demux/m3u.c
* fixed a really stupid bug with compressed header, improved parsing
[vlc] / modules / demux / m3u.c
index e9c2c3d449e94fc10081f1a602654636338782a0..92246049e65de2af1b49424e76986279450efe23 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
- * m3u.c: a meta demux to parse m3u and asx playlists
+ * m3u.c: a meta demux to parse pls, m3u and asx playlists
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: m3u.c,v 1.13 2003/02/27 13:19:43 gbazin Exp $
+ * $Id: m3u.c,v 1.15 2003/03/06 15:30:42 sigmunau Exp $
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *          Gildas Bazin <gbazin@netcourrier.com>
  *****************************************************************************/
 #define MAX_LINE 1024
 
+#define TYPE_UNKNOWN 0
 #define TYPE_M3U 1
 #define TYPE_ASX 2
 #define TYPE_HTML 3
+#define TYPE_PLS 4
 
 struct demux_sys_t
 {
@@ -60,12 +62,13 @@ static int  Demux ( input_thread_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("m3u/asx metademux") );
+    set_description( _("playlist metademux") );
     set_capability( "demux", 10 );
     set_callbacks( Activate, Deactivate );
     add_shortcut( "m3u" );
     add_shortcut( "asx" );
     add_shortcut( "html" );
+    add_shortcut( "pls" );
 vlc_module_end();
 
 /*****************************************************************************
@@ -107,6 +110,11 @@ static int Activate( vlc_object_t * p_this )
         {
             i_type = TYPE_HTML;
         }
+        else if( !strcasecmp( psz_ext, ".pls") ||
+                 ( p_input->psz_demux && !strncmp(p_input->psz_demux, "pls", 3) ) )
+        {
+            i_type = TYPE_PLS;
+        }
     }
 
     /* we had no luck looking at the file extention, so we have a look
@@ -117,9 +125,10 @@ static int Activate( vlc_object_t * p_this )
     {
         byte_t *p_peek;
         int i_size = input_Peek( p_input, &p_peek, MAX_LINE );
-        i_size -= sizeof("<html>") - 1;
+        i_size -= sizeof("[playlist]") - 1;
         if ( i_size > 0 ) {
             while ( i_size
+                    && strncasecmp( p_peek, "[playlist]", sizeof("[playlist]") - 1 )
                     && strncasecmp( p_peek, "<html>", sizeof("<html>") - 1 )
                     && strncasecmp( p_peek, "<asx", sizeof("<asx") - 1 ) )
             {
@@ -130,6 +139,10 @@ static int Activate( vlc_object_t * p_this )
             {
                 return -1;
             }
+            else if ( !strncasecmp( p_peek, "[playlist]", sizeof("[playlist]") -1 ) )
+            {
+                i_type = TYPE_PLS;
+            }
             else if ( !strncasecmp( p_peek, "<html>", sizeof("<html>") -1 ) )
             {
                 i_type = TYPE_HTML;
@@ -165,15 +178,13 @@ static void Deactivate( vlc_object_t *p_this )
 }
 
 /*****************************************************************************
- * Demux: reads and demuxes data packets
- *****************************************************************************
- * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
+ * ProcessLine: read a "line" from the file and add any entries found
+ * to the playlist. Return number of items added ( 0 or 1 )
  *****************************************************************************/
-static void ProcessLine ( input_thread_t *p_input , demux_sys_t *p_m3u
-        , playlist_t *p_playlist , char psz_line[MAX_LINE] )
+static int ProcessLine ( input_thread_t *p_input , demux_sys_t *p_m3u
+        , playlist_t *p_playlist , char psz_line[MAX_LINE], int i_position )
 {
     char          *psz_bol, *psz_name;
-
     psz_bol = psz_line;
 
     /* Remove unnecessary tabs or spaces at the beginning of line */
@@ -186,7 +197,23 @@ static void ProcessLine ( input_thread_t *p_input , demux_sys_t *p_m3u
         /* Check for comment line */
         if( *psz_bol == '#' )
             /*line is comment or extended info, ignored for now */
-            return;
+            return 0;
+    }
+    else if ( p_m3u->i_type == TYPE_PLS )
+    {
+        /* We are dealing with .pls files from shoutcast
+         * We are looking for lines like "File1=http://..." */
+        if( !strncasecmp( psz_bol, "File", sizeof("File") - 1 ) )
+        {
+            psz_bol += sizeof("File") - 1;
+            psz_bol = strchr( psz_bol, '=' );
+            if ( !psz_bol ) return 0;
+            psz_bol++;
+        }
+        else
+        {
+            return 0;
+        }
     }
     else if ( p_m3u->i_type == TYPE_ASX )
     {
@@ -199,13 +226,13 @@ static void ProcessLine ( input_thread_t *p_input , demux_sys_t *p_m3u
                strncasecmp( psz_bol, "ref", sizeof("ref") - 1 ) )
             psz_bol++;
 
-        if( !*psz_bol ) return;
+        if( !*psz_bol ) return 0;
 
         while( *psz_bol &&
                strncasecmp( psz_bol, "href", sizeof("href") - 1 ) )
             psz_bol++;
 
-        if( !*psz_bol ) return;
+        if( !*psz_bol ) return 0;
 
         while( *psz_bol &&
                strncasecmp( psz_bol, "mms://",
@@ -216,15 +243,15 @@ static void ProcessLine ( input_thread_t *p_input , demux_sys_t *p_m3u
                             sizeof("file://") - 1 ) )
             psz_bol++;
 
-        if( !*psz_bol ) return;
+        if( !*psz_bol ) return 0;
 
         psz_eol = strchr( psz_bol, '"');
         if( !psz_eol )
-          return;
+          return 0;
 
         *psz_eol = '\0';
     }
-    else
+    else if ( p_m3u->i_type == TYPE_HTML )
     {
         /* We are dealing with a html file with embedded
          * video.  We are looking for "<param name="filename"
@@ -235,31 +262,36 @@ static void ProcessLine ( input_thread_t *p_input , demux_sys_t *p_m3u
                strncasecmp( psz_bol, "param", sizeof("param") - 1 ) )
             psz_bol++;
 
-        if( !*psz_bol ) return;
+        if( !*psz_bol ) return 0;
 
         while( *psz_bol &&
                strncasecmp( psz_bol, "filename", sizeof("filename") - 1 ) )
             psz_bol++;
 
-        if( !*psz_bol ) return;
+        if( !*psz_bol ) return 0;
 
         while( *psz_bol &&
                strncasecmp( psz_bol, "http://",
                             sizeof("http://") - 1 ) )
             psz_bol++;
 
-        if( !*psz_bol ) return;
+        if( !*psz_bol ) return 0;
 
         psz_eol = strchr( psz_bol, '"');
         if( !psz_eol )
-          return;
+          return 0;
 
         *psz_eol = '\0';
 
     }
+    else
+    {
+        msg_Warn( p_input, "unknown file type" );
+        return 0;
+    }
 
     /* empty line */
-    if ( !*psz_bol ) return;
+    if ( !*psz_bol ) return 0;
 
     /*
      * From now on, we know we've got a meaningful line
@@ -335,17 +367,24 @@ static void ProcessLine ( input_thread_t *p_input , demux_sys_t *p_m3u
     }
 
     playlist_Add( p_playlist, psz_name,
-                  PLAYLIST_APPEND, PLAYLIST_END );
+                  PLAYLIST_INSERT, i_position );
 
     free( psz_name );
+    return 1;
 }
 
+/*****************************************************************************
+ * Demux: reads and demuxes data packets
+ *****************************************************************************
+ * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
+ *****************************************************************************/
 static int Demux ( input_thread_t *p_input )
 {
     data_packet_t *p_data;
     char          *p_buf, psz_line[MAX_LINE], eol_tok;
     int           i_size, i_bufpos, i_linepos = 0;
     playlist_t    *p_playlist;
+    int           i_position;
     vlc_bool_t    b_discard = VLC_FALSE;
 
     demux_sys_t   *p_m3u = (demux_sys_t *)p_input->p_demux_data;
@@ -359,6 +398,7 @@ static int Demux ( input_thread_t *p_input )
     }
 
     p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
+    i_position = p_playlist->i_index + 1;
 
     /* Depending on wether we are dealing with an m3u/asf file, the end of
      * line token will be different */
@@ -405,7 +445,8 @@ static int Demux ( input_thread_t *p_input )
 
             psz_line[i_linepos] = '\0';
             i_linepos = 0;
-            ProcessLine ( p_input, p_m3u , p_playlist , psz_line );
+            i_position += ProcessLine ( p_input, p_m3u , p_playlist ,
+                                        psz_line, i_position );
         }
 
         input_DeletePacket( p_input->p_method_data, p_data );
@@ -415,7 +456,8 @@ static int Demux ( input_thread_t *p_input )
     {
         psz_line[i_linepos] = '\0';
         i_linepos = 0;
-        ProcessLine ( p_input, p_m3u , p_playlist , psz_line );
+        i_position += ProcessLine ( p_input, p_m3u , p_playlist , psz_line,
+                                    i_position );
     }
 
     vlc_object_release( p_playlist );