]> git.sesse.net Git - vlc/blobdiff - modules/access/mms/mmsh.c
Make Zorglub less unhappy
[vlc] / modules / access / mms / mmsh.c
index 21819fcabfdde9809fddafe342e58e83dad76b48..696352ec88573c973fd1f4cd8eea33468643fef8 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mmsh.c:
  *****************************************************************************
- * Copyright (C) 2001, 2002 VideoLAN
+ * Copyright (C) 2001, 2002 the VideoLAN team
  * $Id$
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
-int  E_(MMSHOpen)  ( input_thread_t * );
-void E_(MMSHClose) ( input_thread_t * );
+int  E_(MMSHOpen)  ( access_t * );
+void E_(MMSHClose) ( access_t * );
 
-static ssize_t  Read( input_thread_t *, byte_t *, size_t );
-static ssize_t  ReadRedirect( input_thread_t *, byte_t *, size_t );
-static void     Seek( input_thread_t *, off_t );
+static int  Read( access_t *, uint8_t *, int );
+static int  ReadRedirect( access_t *, uint8_t *, int );
+static int  Seek( access_t *, int64_t );
+static int  Control( access_t *, int, va_list );
 
-static int      Start( input_thread_t *, off_t );
-static void     Stop( input_thread_t * );
-static int      GetPacket( input_thread_t *, chunk_t * );
+static int  Describe( access_t  *, char **ppsz_location );
+static int  Start( access_t *, int64_t );
+static void Stop( access_t * );
+static int  GetPacket( access_t *, chunk_t * );
 
 /****************************************************************************
  * Open: connect to ftp server and ask for file
  ****************************************************************************/
-int  E_( MMSHOpen )  ( input_thread_t *p_input )
+int E_(MMSHOpen)( access_t *p_access )
 {
     access_sys_t    *p_sys;
-
-    char            *psz;
     char            *psz_location = NULL;
-    int             i_code;
-
-    vlc_value_t     val;
 
     /* init p_sys */
-    p_input->p_access_data = p_sys = malloc( sizeof( access_sys_t ) );
-    p_sys->i_proto = MMS_PROTO_HTTP;
 
-    p_sys->fd       = -1;
-    p_sys->i_request_context = 1;
-    p_sys->b_broadcast = VLC_TRUE;
-    p_sys->p_packet = NULL;
-    p_sys->i_packet_sequence = 0;
-    p_sys->i_packet_used = 0;
-    p_sys->i_packet_length = 0;
-    p_sys->i_pos = 0;
-    p_sys->i_request_context = 1;
-    E_( GenerateGuid )( &p_sys->guid );
+    /* Set up p_access */
+    p_access->pf_read = Read;
+    p_access->pf_block = NULL;
+    p_access->pf_control = Control;
+    p_access->pf_seek = Seek;
+    p_access->info.i_update = 0;
+    p_access->info.i_size = 0;
+    p_access->info.i_pos = 0;
+    p_access->info.b_eof = VLC_FALSE;
+    p_access->info.i_title = 0;
+    p_access->info.i_seekpoint = 0;
+    p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
+    memset( p_sys, 0, sizeof( access_sys_t ) );
+    p_sys->i_proto= MMS_PROTO_HTTP;
+    p_sys->fd     = -1;
+    p_sys->i_start= 0;
 
     /* open a tcp connection */
-    vlc_UrlParse( &p_sys->url, p_input->psz_name, 0 );
-    if( p_sys->url.psz_host == NULL && *p_sys->url.psz_host == '\0' )
+    vlc_UrlParse( &p_sys->url, p_access->psz_path, 0 );
+    if( p_sys->url.psz_host == NULL || *p_sys->url.psz_host == '\0' )
     {
-        msg_Err( p_input, "invalid host" );
-        goto error;
+        msg_Err( p_access, "invalid host" );
+        vlc_UrlClean( &p_sys->url );
+        free( p_sys );
+        return VLC_EGENERIC;
     }
     if( p_sys->url.i_port <= 0 )
-    {
         p_sys->url.i_port = 80;
+
+    if( Describe( p_access, &psz_location ) )
+    {
+        vlc_UrlClean( &p_sys->url );
+        free( p_sys );
+        return VLC_EGENERIC;
+    }
+    /* Handle redirection */
+    if( psz_location && *psz_location )
+    {
+        playlist_t * p_playlist = vlc_object_find( p_access, VLC_OBJECT_PLAYLIST, FIND_PARENT );
+
+        msg_Dbg( p_access, "redirection to %s", psz_location );
+
+        if( !p_playlist )
+        {
+            msg_Err( p_access, "redirection failed: can't find playlist" );
+            free( psz_location );
+            return VLC_EGENERIC;
+        }
+        p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
+        playlist_Add( p_playlist, psz_location, psz_location,
+                      PLAYLIST_INSERT | PLAYLIST_GO,
+                      p_playlist->i_index + 1 );
+        vlc_object_release( p_playlist );
+
+        free( psz_location );
+
+        p_access->pf_read = ReadRedirect;
+        return VLC_SUCCESS;
+    }
+
+    /* Start playing */
+    if( Start( p_access, 0 ) )
+    {
+        msg_Err( p_access, "cannot start stream" );
+        free( p_sys->p_header );
+        vlc_UrlClean( &p_sys->url );
+        free( p_sys );
+        return VLC_EGENERIC;
+    }
+
+    if( !p_sys->b_broadcast )
+    {
+        p_access->info.i_size = p_sys->asfh.i_file_size;
+    }
+
+    return VLC_SUCCESS;
+}
+
+/*****************************************************************************
+ * Close: free unused data structures
+ *****************************************************************************/
+void E_( MMSHClose )( access_t *p_access )
+{
+    access_sys_t *p_sys = p_access->p_sys;
+
+    Stop( p_access );
+    free( p_sys );
+}
+
+/*****************************************************************************
+ * Control:
+ *****************************************************************************/
+static int Control( access_t *p_access, int i_query, va_list args )
+{
+    access_sys_t *p_sys = p_access->p_sys;
+    vlc_bool_t   *pb_bool;
+    int          *pi_int;
+    int64_t      *pi_64;
+    int          i_int;
+
+    switch( i_query )
+    {
+        /* */
+        case ACCESS_CAN_SEEK:
+            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
+            *pb_bool = !p_sys->b_broadcast;
+            break;
+
+        case ACCESS_CAN_FASTSEEK:
+        case ACCESS_CAN_PAUSE:
+            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
+            *pb_bool = VLC_FALSE;
+            break;
+
+        case ACCESS_CAN_CONTROL_PACE:
+            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
+
+#if 0       /* Disable for now until we have a clock synchro algo
+             * which works with something else than MPEG over UDP */
+            *pb_bool = VLC_FALSE;
+#endif
+            *pb_bool = VLC_TRUE;
+            break;
+
+        /* */
+        case ACCESS_GET_MTU:
+            pi_int = (int*)va_arg( args, int * );
+            *pi_int = 3 * p_sys->asfh.i_min_data_packet_size;
+            break;
+
+        case ACCESS_GET_PTS_DELAY:
+            pi_64 = (int64_t*)va_arg( args, int64_t * );
+            *pi_64 = (int64_t)var_GetInteger( p_access, "mms-caching" ) * I64C(1000);
+            break;
+
+        case ACCESS_GET_PRIVATE_ID_STATE:
+            i_int = (int)va_arg( args, int );
+            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t );
+
+            if( i_int < 0 || i_int > 127 )
+                return VLC_EGENERIC;
+            *pb_bool =  p_sys->asfh.stream[i_int].i_selected ? VLC_TRUE : VLC_FALSE;
+            break;
+
+        /* */
+        case ACCESS_SET_PAUSE_STATE:
+        case ACCESS_GET_TITLE_INFO:
+        case ACCESS_SET_TITLE:
+        case ACCESS_SET_SEEKPOINT:
+        case ACCESS_SET_PRIVATE_ID_STATE:
+            return VLC_EGENERIC;
+
+        default:
+            msg_Warn( p_access, "unimplemented query in control" );
+            return VLC_EGENERIC;
+
+    }
+    return VLC_SUCCESS;
+}
+
+/*****************************************************************************
+ * Seek: try to go at the right place
+ *****************************************************************************/
+static int Seek( access_t *p_access, int64_t i_pos )
+{
+    access_sys_t *p_sys = p_access->p_sys;
+    chunk_t      ck;
+    off_t        i_offset;
+    off_t        i_packet;
+
+    msg_Dbg( p_access, "seeking to "I64Fd, i_pos );
+
+    i_packet = ( i_pos - p_sys->i_header ) / p_sys->asfh.i_min_data_packet_size;
+    i_offset = ( i_pos - p_sys->i_header ) % p_sys->asfh.i_min_data_packet_size;
+
+    Stop( p_access );
+    Start( p_access, i_packet * p_sys->asfh.i_min_data_packet_size );
+
+    while( !p_access->b_die )
+    {
+        if( GetPacket( p_access, &ck ) )
+            break;
+
+        /* skip headers */
+        if( ck.i_type != 0x4824 )
+            break;
+
+        msg_Warn( p_access, "skipping header" );
+    }
+
+    p_access->info.i_pos = i_pos;
+    p_access->info.b_eof = VLC_FALSE;
+    p_sys->i_packet_used += i_offset;
+
+    return VLC_SUCCESS;
+}
+
+/*****************************************************************************
+ * Read:
+ *****************************************************************************/
+static int ReadRedirect( access_t *p_access, uint8_t *p, int i_len )
+{
+    return 0;
+}
+
+/*****************************************************************************
+ * Read:
+ *****************************************************************************/
+static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
+{
+    access_sys_t *p_sys = p_access->p_sys;
+    size_t       i_copy;
+    size_t       i_data = 0;
+
+    if( p_access->info.b_eof )
+        return 0;
+
+    while( i_data < i_len )
+    {
+        if( p_access->info.i_pos < p_sys->i_start + p_sys->i_header )
+        {
+            int i_offset = p_access->info.i_pos - p_sys->i_start;
+            i_copy = __MIN( p_sys->i_header - i_offset, i_len - i_data );
+            memcpy( &p_buffer[i_data], &p_sys->p_header[i_offset], i_copy );
+
+            i_data += i_copy;
+            p_access->info.i_pos += i_copy;
+        }
+        else if( p_sys->i_packet_used < p_sys->i_packet_length )
+        {
+            i_copy = __MIN( p_sys->i_packet_length - p_sys->i_packet_used,
+                            i_len - i_data );
+
+            memcpy( &p_buffer[i_data],
+                    &p_sys->p_packet[p_sys->i_packet_used],
+                    i_copy );
+
+            i_data += i_copy;
+            p_sys->i_packet_used += i_copy;
+            p_access->info.i_pos += i_copy;
+        }
+        else if( p_sys->i_packet_length > 0 &&
+                 (int)p_sys->i_packet_used < p_sys->asfh.i_min_data_packet_size )
+        {
+            i_copy = __MIN( p_sys->asfh.i_min_data_packet_size - p_sys->i_packet_used,
+                            i_len - i_data );
+
+            memset( &p_buffer[i_data], 0, i_copy );
+
+            i_data += i_copy;
+            p_sys->i_packet_used += i_copy;
+            p_access->info.i_pos += i_copy;
+        }
+        else
+        {
+            chunk_t ck;
+            if( GetPacket( p_access, &ck ) )
+            {
+                if( ck.i_type == 0x4524 && ck.i_sequence != 0 && p_sys->b_broadcast )
+                {
+                    char *psz_location = NULL;
+
+                    p_sys->i_start = p_access->info.i_pos;
+
+                    msg_Dbg( p_access, "stoping the stream" );
+                    Stop( p_access );
+
+                    msg_Dbg( p_access, "describe the stream" );
+                    if( Describe( p_access, &psz_location ) )
+                    {
+                        msg_Err( p_access, "describe failed" );
+                        p_access->info.b_eof = VLC_TRUE;
+                        return 0;
+                    }
+                    if( Start( p_access, 0 ) )
+                    {
+                        msg_Err( p_access, "Start failed" );
+                        p_access->info.b_eof = VLC_TRUE;
+                        return 0;
+                    }
+                }
+                else
+                {
+                    p_access->info.b_eof = VLC_TRUE;
+                    return 0;
+                }
+            }
+            if( ck.i_type != 0x4424 )
+            {
+                p_sys->i_packet_used = 0;
+                p_sys->i_packet_length = 0;
+            }
+        }
     }
 
-    if( ( p_sys->fd = net_OpenTCP( p_input, p_sys->url.psz_host,
+    return( i_data );
+}
+
+/*****************************************************************************
+ * Describe:
+ *****************************************************************************/
+static int Describe( access_t  *p_access, char **ppsz_location )
+{
+    access_sys_t *p_sys = p_access->p_sys;
+    char         *psz_location = NULL;
+    char         *psz;
+    int          i_code;
+
+    /* Reinit context */
+    p_sys->b_broadcast = VLC_TRUE;
+    p_sys->i_request_context = 1;
+    p_sys->i_packet_sequence = 0;
+    p_sys->i_packet_used = 0;
+    p_sys->i_packet_length = 0;
+    p_sys->p_packet = NULL;
+    E_( GenerateGuid )( &p_sys->guid );
+
+    if( ( p_sys->fd = net_OpenTCP( p_access, p_sys->url.psz_host,
                                             p_sys->url.i_port ) ) < 0 )
     {
-        msg_Err( p_input, "cannot connect to%s:%d", p_sys->url.psz_host, p_sys->url.i_port );
+        msg_Err( p_access, "cannot connect to %s:%d", p_sys->url.psz_host, p_sys->url.i_port );
         goto error;
     }
 
     /* send first request */
-    net_Printf( VLC_OBJECT(p_input), p_sys->fd,
+    net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
                 "GET %s HTTP/1.0\r\n"
                 "Accept: */*\r\n"
                 "User-Agent: NSPlayer/4.1.0.3856\r\n"
@@ -118,42 +407,42 @@ int  E_( MMSHOpen )  ( input_thread_t *p_input )
                 p_sys->i_request_context++,
                 GUID_PRINT( p_sys->guid ) );
 
-    if( net_Printf( VLC_OBJECT(p_input), p_sys->fd, "\r\n" ) < 0 )
+    if( net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, "\r\n" ) < 0 )
     {
-        msg_Err( p_input, "failed to send request" );
+        msg_Err( p_access, "failed to send request" );
         goto error;
     }
 
     /* Receive the http header */
-    if( ( psz = net_Gets( VLC_OBJECT(p_input), p_sys->fd ) ) == NULL )
+    if( ( psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, NULL ) ) == NULL )
     {
-        msg_Err( p_input, "failed to read answer" );
+        msg_Err( p_access, "failed to read answer" );
         goto error;
     }
     if( strncmp( psz, "HTTP/1.", 7 ) )
     {
-        msg_Err( p_input, "invalid HTTP reply '%s'", psz );
+        msg_Err( p_access, "invalid HTTP reply '%s'", psz );
         free( psz );
         goto error;
     }
     i_code = atoi( &psz[9] );
     if( i_code >= 400 )
     {
-        msg_Err( p_input, "error: %s", psz );
+        msg_Err( p_access, "error: %s", psz );
         free( psz );
         goto error;
     }
 
-    msg_Dbg( p_input, "HTTP reply '%s'", psz );
+    msg_Dbg( p_access, "HTTP reply '%s'", psz );
     free( psz );
     for( ;; )
     {
-        char *psz = net_Gets( p_input, p_sys->fd );
+        char *psz = net_Gets( p_access, p_sys->fd, NULL );
         char *p;
 
         if( psz == NULL )
         {
-            msg_Err( p_input, "failed to read answer" );
+            msg_Err( p_access, "failed to read answer" );
             goto error;
         }
 
@@ -165,7 +454,7 @@ int  E_( MMSHOpen )  ( input_thread_t *p_input )
 
         if( ( p = strchr( psz, ':' ) ) == NULL )
         {
-            msg_Err( p_input, "malformed header line: %s", psz );
+            msg_Err( p_access, "malformed header line: %s", psz );
             free( psz );
             goto error;
         }
@@ -181,17 +470,17 @@ int  E_( MMSHOpen )  ( input_thread_t *p_input )
                 /* FIXME, it is a bit badly done here ..... */
                 if( strstr( p, "broadcast" ) )
                 {
-                    msg_Dbg( p_input, "stream type = broadcast" );
+                    msg_Dbg( p_access, "stream type = broadcast" );
                     p_sys->b_broadcast = VLC_TRUE;
                 }
                 else if( strstr( p, "seekable" ) )
                 {
-                    msg_Dbg( p_input, "stream type = seekable" );
+                    msg_Dbg( p_access, "stream type = seekable" );
                     p_sys->b_broadcast = VLC_FALSE;
                 }
                 else
                 {
-                    msg_Warn( p_input, "unknow stream types (%s)", p );
+                    msg_Warn( p_access, "unknow stream types (%s)", p );
                     p_sys->b_broadcast = VLC_FALSE;
                 }
             }
@@ -209,37 +498,10 @@ int  E_( MMSHOpen )  ( input_thread_t *p_input )
           i_code == 303 || i_code == 307 ) &&
         psz_location && *psz_location )
     {
-        playlist_t * p_playlist;
-
-        msg_Dbg( p_input, "redirection to %s", psz_location );
+        msg_Dbg( p_access, "redirection to %s", psz_location );
         net_Close( p_sys->fd ); p_sys->fd = -1;
 
-        p_playlist = vlc_object_find( p_input, VLC_OBJECT_PLAYLIST, FIND_PARENT );
-        if( !p_playlist )
-        {
-            msg_Err( p_input, "redirection failed: can't find playlist" );
-            goto error;
-        }
-        p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
-        playlist_Add( p_playlist, psz_location, psz_location,
-                      PLAYLIST_INSERT | PLAYLIST_GO,
-                      p_playlist->i_index + 1 );
-        vlc_object_release( p_playlist );
-
-        p_input->pf_read = ReadRedirect;
-        p_input->pf_seek = NULL;
-        p_input->pf_set_program = input_SetProgram;
-        p_input->pf_set_area = NULL;
-
-        /* *** finished to set some variable *** */
-        vlc_mutex_lock( &p_input->stream.stream_lock );
-        p_input->stream.b_pace_control = 0;
-        p_input->stream.p_selected_area->i_size = 0;
-        p_input->stream.b_seekable = 0;
-        p_input->stream.p_selected_area->i_tell = 0;
-        p_input->stream.i_method = INPUT_METHOD_NETWORK;
-        vlc_mutex_unlock( &p_input->stream.stream_lock );
-
+        *ppsz_location = psz_location;
         return VLC_SUCCESS;
     }
 
@@ -249,7 +511,7 @@ int  E_( MMSHOpen )  ( input_thread_t *p_input )
     for( ;; )
     {
         chunk_t ck;
-        if( GetPacket( p_input, &ck ) ||
+        if( GetPacket( p_access, &ck ) ||
             ck.i_type != 0x4824 )
         {
             break;
@@ -263,10 +525,10 @@ int  E_( MMSHOpen )  ( input_thread_t *p_input )
                     ck.p_data, ck.i_data );
         }
     }
-    msg_Dbg( p_input, "complete header size=%d", p_sys->i_header );
+    msg_Dbg( p_access, "complete header size=%d", p_sys->i_header );
     if( p_sys->i_header <= 0 )
     {
-        msg_Err( p_input, "header size == 0" );
+        msg_Err( p_access, "header size == 0" );
         goto error;
     }
     /* close this connection */
@@ -279,208 +541,44 @@ int  E_( MMSHOpen )  ( input_thread_t *p_input )
      *        and bitrate mutual exclusion(optional) */
     E_( asf_HeaderParse )( &p_sys->asfh,
                            p_sys->p_header, p_sys->i_header );
-    msg_Dbg( p_input, "packet count=%lld packet size=%d",
+    msg_Dbg( p_access, "packet count=%lld packet size=%d",
              p_sys->asfh.i_data_packets_count,
              p_sys->asfh.i_min_data_packet_size );
 
     E_( asf_StreamSelect)( &p_sys->asfh,
-                           config_GetInt( p_input, "mms-maxbitrate" ),
-                           config_GetInt( p_input, "mms-all" ),
-                           config_GetInt( p_input, "audio" ),
-                           config_GetInt( p_input, "video" ) );
-
-    if( Start( p_input, 0 ) )
-    {
-        msg_Err( p_input, "cannot start stream" );
-        goto error;
-    }
-
-    /* *** set exported functions *** */
-    p_input->pf_read = Read;
-    p_input->pf_seek = Seek;
-    p_input->pf_set_program = input_SetProgram;
-    p_input->pf_set_area = NULL;
-
-    p_input->p_private = NULL;
-    p_input->i_mtu = 3 * p_sys->asfh.i_min_data_packet_size;
-
-    /* *** finished to set some variable *** */
-    vlc_mutex_lock( &p_input->stream.stream_lock );
-    p_input->stream.b_pace_control = 0;
-    if( p_sys->b_broadcast )
-    {
-        p_input->stream.p_selected_area->i_size = 0;
-        p_input->stream.b_seekable = 0;
-    }
-    else
-    {
-        p_input->stream.p_selected_area->i_size = p_sys->asfh.i_file_size;
-        p_input->stream.b_seekable = 1;
-    }
-    p_input->stream.p_selected_area->i_tell = 0;
-    p_input->stream.i_method = INPUT_METHOD_NETWORK;
-    vlc_mutex_unlock( &p_input->stream.stream_lock );
-
-    /* Update default_pts to a suitable value for mms access */
-    var_Get( p_input, "mms-caching", &val );
-    p_input->i_pts_delay = val.i_int * 1000;
+                           var_CreateGetInteger( p_access, "mms-maxbitrate" ),
+                           var_CreateGetInteger( p_access, "mms-all" ),
+                           var_CreateGetInteger( p_access, "audio" ),
+                           var_CreateGetInteger( p_access, "video" ) );
 
     return VLC_SUCCESS;
 
 error:
-    vlc_UrlClean( &p_sys->url );
     if( p_sys->fd > 0 )
     {
         net_Close( p_sys->fd  );
+        p_sys->fd = -1;
     }
-    free( p_sys );
     return VLC_EGENERIC;
 }
 
-/*****************************************************************************
- * Close: free unused data structures
- *****************************************************************************/
-void E_( MMSHClose )( input_thread_t *p_input )
-{
-    access_sys_t    *p_sys   = p_input->p_access_data;
-
-    msg_Dbg( p_input, "stopping stream" );
-
-    Stop( p_input );
-
-    free( p_sys );
-}
-
-/*****************************************************************************
- * Seek: try to go at the right place
- *****************************************************************************/
-static void Seek( input_thread_t * p_input, off_t i_pos )
-{
-    access_sys_t *p_sys = p_input->p_access_data;
-    chunk_t      ck;
-    off_t        i_offset;
-    off_t        i_packet;
-
-    i_packet = ( i_pos - p_sys->i_header ) / p_sys->asfh.i_min_data_packet_size;
-    i_offset = ( i_pos - p_sys->i_header ) % p_sys->asfh.i_min_data_packet_size;
-
-    msg_Dbg( p_input, "seeking to "I64Fd, i_pos );
-
-    vlc_mutex_lock( &p_input->stream.stream_lock );
-
-    Stop( p_input );
-    Start( p_input, i_packet * p_sys->asfh.i_min_data_packet_size );
-
-    for( ;; )
-    {
-        if( GetPacket( p_input, &ck ) )
-        {
-            break;
-        }
-
-        /* skip headers */
-        if( ck.i_type != 0x4824 )
-        {
-            break;
-        }
-        msg_Warn( p_input, "skipping header" );
-    }
-
-    p_sys->i_pos = i_pos;
-    p_sys->i_packet_used += i_offset;
-
-    p_input->stream.p_selected_area->i_tell = i_pos;
-    vlc_mutex_unlock( &p_input->stream.stream_lock );
-}
-
-/*****************************************************************************
- * Read:
- *****************************************************************************/
-static ssize_t ReadRedirect( input_thread_t *p_input, byte_t *p, size_t i )
-{
-    return 0;
-}
-
-/*****************************************************************************
- * Read:
- *****************************************************************************/
-static ssize_t Read        ( input_thread_t * p_input, byte_t * p_buffer,
-                             size_t i_len )
-{
-    access_sys_t *p_sys = p_input->p_access_data;
-    size_t       i_copy;
-    size_t       i_data = 0;
-
-    while( i_data < i_len )
-    {
-        if( p_sys->i_pos < p_sys->i_header )
-        {
-            i_copy = __MIN( p_sys->i_header - p_sys->i_pos, i_len - i_data );
-            memcpy( &p_buffer[i_data], &p_sys->p_header[p_sys->i_pos], i_copy );
-
-            i_data += i_copy;
-            p_sys->i_pos += i_copy;
-        }
-        else if( p_sys->i_packet_used < p_sys->i_packet_length )
-        {
-            i_copy = __MIN( p_sys->i_packet_length - p_sys->i_packet_used,
-                            i_len - i_data );
-
-            memcpy( &p_buffer[i_data],
-                    &p_sys->p_packet[p_sys->i_packet_used],
-                    i_copy );
-
-            i_data += i_copy;
-            p_sys->i_packet_used += i_copy;
-            p_sys->i_pos += i_copy;
-        }
-        else if( p_sys->i_packet_length > 0 &&
-                 (int)p_sys->i_packet_used < p_sys->asfh.i_min_data_packet_size )
-        {
-            i_copy = __MIN( p_sys->asfh.i_min_data_packet_size - p_sys->i_packet_used,
-                            i_len - i_data );
-
-            memset( &p_buffer[i_data], 0, i_copy );
-
-            i_data += i_copy;
-            p_sys->i_packet_used += i_copy;
-            p_sys->i_pos += i_copy;
-        }
-        else
-        {
-            chunk_t ck;
-            if( GetPacket( p_input, &ck ) )
-            {
-                return -1;
-            }
-            if( ck.i_type == 0x4824 )
-            {
-                p_sys->i_packet_used = 0;
-                p_sys->i_packet_length = 0;
-            }
-        }
-    }
-
-    return( i_data );
-}
-
 /*****************************************************************************
  *
  *****************************************************************************/
-static int Start( input_thread_t *p_input, off_t i_pos )
+static int Start( access_t *p_access, off_t i_pos )
 {
-    access_sys_t *p_sys = p_input->p_access_data;
+    access_sys_t *p_sys = p_access->p_sys;
     int  i_streams = 0;
     int  i;
     char *psz;
 
-    msg_Dbg( p_input, "starting stream" );
+    msg_Dbg( p_access, "starting stream" );
 
-    if( ( p_sys->fd = net_OpenTCP( p_input, p_sys->url.psz_host,
+    if( ( p_sys->fd = net_OpenTCP( p_access, p_sys->url.psz_host,
                                             p_sys->url.i_port ) ) < 0 )
     {
         /* should not occur */
-        msg_Err( p_input, "cannot connect to the server" );
+        msg_Err( p_access, "cannot connect to the server" );
         return VLC_EGENERIC;
     }
 
@@ -494,10 +592,10 @@ static int Start( input_thread_t *p_input, off_t i_pos )
 
     if( i_streams <= 0 )
     {
-        msg_Err( p_input, "no stream selected" );
+        msg_Err( p_access, "no stream selected" );
         return VLC_EGENERIC;
     }
-    net_Printf( VLC_OBJECT(p_input), p_sys->fd,
+    net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
                 "GET %s HTTP/1.0\r\n"
                 "Accept: */*\r\n"
                 "User-Agent: NSPlayer/4.1.0.3856\r\n"
@@ -506,19 +604,19 @@ static int Start( input_thread_t *p_input, off_t i_pos )
                 p_sys->url.psz_host, p_sys->url.i_port );
     if( p_sys->b_broadcast )
     {
-        net_Printf( VLC_OBJECT(p_input), p_sys->fd,
+        net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
                     "Pragma: no-cache,rate=1.000000,request-context=%d\r\n",
                     p_sys->i_request_context++ );
     }
     else
     {
-        net_Printf( VLC_OBJECT(p_input), p_sys->fd,
+        net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
                     "Pragma: no-cache,rate=1.000000,stream-time=0,stream-offset=%u:%u,request-context=%d,max-duration=0\r\n",
                     (uint32_t)((i_pos >> 32)&0xffffffff),
                     (uint32_t)(i_pos&0xffffffff),
                     p_sys->i_request_context++ );
     }
-    net_Printf( VLC_OBJECT(p_input), p_sys->fd,
+    net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
                 "Pragma: xPlayStrm=1\r\n"
                 "Pragma: xClientGUID={"GUID_FMT"}\r\n"
                 "Pragma: stream-switch-count=%d\r\n"
@@ -536,40 +634,41 @@ static int Start( input_thread_t *p_input, off_t i_pos )
                 i_select = 0;
             }
 
-            net_Printf( VLC_OBJECT(p_input), p_sys->fd,
+            net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
                         "ffff:%d:%d ", i, i_select );
         }
     }
-    net_Printf( VLC_OBJECT(p_input), p_sys->fd, "\r\n" );
-    net_Printf( VLC_OBJECT(p_input), p_sys->fd, "Connection: Close\r\n" );
+    net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, "\r\n" );
+    net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
+                "Connection: Close\r\n" );
 
-    if( net_Printf( VLC_OBJECT(p_input), p_sys->fd, "\r\n" ) < 0 )
+    if( net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, "\r\n" ) < 0 )
     {
-        msg_Err( p_input, "failed to send request" );
+        msg_Err( p_access, "failed to send request" );
         return VLC_EGENERIC;
     }
 
-    if( ( psz = net_Gets( VLC_OBJECT(p_input), p_sys->fd ) ) == NULL )
+    if( ( psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, NULL ) ) == NULL )
     {
-        msg_Err( p_input, "cannot read data" );
+        msg_Err( p_access, "cannot read data" );
         return VLC_EGENERIC;
     }
     if( atoi( &psz[9] ) >= 400 )
     {
-        msg_Err( p_input, "error: %s", psz );
+        msg_Err( p_access, "error: %s", psz );
         free( psz );
         return VLC_EGENERIC;
     }
-    msg_Dbg( p_input, "HTTP reply '%s'", psz );
+    msg_Dbg( p_access, "HTTP reply '%s'", psz );
     free( psz );
 
     /* FIXME check HTTP code */
     for( ;; )
     {
-        char *psz = net_Gets( p_input, p_sys->fd );
+        char *psz = net_Gets( p_access, p_sys->fd, NULL );
         if( psz == NULL )
         {
-            msg_Err( p_input, "cannot read data" );
+            msg_Err( p_access, "cannot read data" );
             return VLC_EGENERIC;
         }
         if( *psz == '\0' )
@@ -577,7 +676,7 @@ static int Start( input_thread_t *p_input, off_t i_pos )
             free( psz );
             break;
         }
-        msg_Dbg( p_input, "%s", psz );
+        msg_Dbg( p_access, "%s", psz );
         free( psz );
     }
 
@@ -590,25 +689,32 @@ static int Start( input_thread_t *p_input, off_t i_pos )
 /*****************************************************************************
  *
  *****************************************************************************/
-static void Stop( input_thread_t *p_input )
+static void Stop( access_t *p_access )
 {
-    access_sys_t *p_sys = p_input->p_access_data;
+    access_sys_t *p_sys = p_access->p_sys;
 
-    msg_Dbg( p_input, "closing stream" );
-    net_Close( p_sys->fd ); p_sys->fd = -1;
+    msg_Dbg( p_access, "closing stream" );
+    if( p_sys->fd > 0 )
+    {
+        net_Close( p_sys->fd );
+        p_sys->fd = -1;
+    }
 }
 
 /*****************************************************************************
  *
  *****************************************************************************/
-static int GetPacket( input_thread_t * p_input, chunk_t *p_ck )
+static int GetPacket( access_t * p_access, chunk_t *p_ck )
 {
-    access_sys_t *p_sys = p_input->p_access_data;
+    access_sys_t *p_sys = p_access->p_sys;
+
+    /* chunk_t */
+    memset( p_ck, 0, sizeof( chunk_t ) );
 
     /* Read the chunk header */
-    if( net_Read( p_input, p_sys->fd, p_sys->buffer, 12, VLC_TRUE ) < 12 )
+    if( net_Read( p_access, p_sys->fd, NULL, p_sys->buffer, 12, VLC_TRUE ) < 12 )
     {
-        /* msg_Err( p_input, "cannot read data" ); */
+        /* msg_Err( p_access, "cannot read data" ); */
         return VLC_EGENERIC;
     }
 
@@ -622,25 +728,34 @@ static int GetPacket( input_thread_t * p_input, chunk_t *p_ck )
 
     if( p_ck->i_type == 0x4524 )   // Transfer complete
     {
-        msg_Warn( p_input, "EOF" );
-        return VLC_EGENERIC;
+        if( p_ck->i_sequence == 0 )
+        {
+            msg_Warn( p_access, "EOF" );
+            return VLC_EGENERIC;
+        }
+        else
+        {
+            msg_Warn( p_access, "Next stream follow but not supported" );
+            return VLC_EGENERIC;
+        }
     }
     else if( p_ck->i_type != 0x4824 && p_ck->i_type != 0x4424 )
     {
-        msg_Err( p_input, "invalid chunk FATAL" );
+        msg_Err( p_access, "invalid chunk FATAL (0x%x)", p_ck->i_type );
         return VLC_EGENERIC;
     }
 
-    if( net_Read( p_input, p_sys->fd, &p_sys->buffer[12], p_ck->i_data, VLC_TRUE ) < p_ck->i_data )
+    if( p_ck->i_data > 0 &&
+        net_Read( p_access, p_sys->fd, NULL, &p_sys->buffer[12], p_ck->i_data, VLC_TRUE ) < p_ck->i_data )
     {
-        msg_Err( p_input, "cannot read data" );
+        msg_Err( p_access, "cannot read data" );
         return VLC_EGENERIC;
     }
 
     if( p_sys->i_packet_sequence != 0 &&
         p_ck->i_sequence != p_sys->i_packet_sequence )
     {
-        msg_Warn( p_input, "packet lost ?" );
+        msg_Warn( p_access, "packet lost ? (%d != %d)", p_ck->i_sequence, p_sys->i_packet_sequence );
     }
 
     p_sys->i_packet_sequence = p_ck->i_sequence + 1;