Commit dd735eba authored by Gildas Bazin's avatar Gildas Bazin

* modules/access/mms/mmsh.c: fixed changeset 23489. Please compile before you submit.

parent 3663d023
...@@ -317,6 +317,7 @@ static int Seek( access_t *p_access, int64_t i_pos ) ...@@ -317,6 +317,7 @@ static int Seek( access_t *p_access, int64_t i_pos )
while( !p_access->b_die ) while( !p_access->b_die )
{ {
msg_Warn( p_access, "GetPacket 1" );
if( GetPacket( p_access, &ck ) ) if( GetPacket( p_access, &ck ) )
break; break;
...@@ -392,6 +393,7 @@ static int Read( access_t *p_access, uint8_t *p_buffer, int i_len ) ...@@ -392,6 +393,7 @@ static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
else else
{ {
chunk_t ck; chunk_t ck;
msg_Warn( p_access, "GetPacket 2" );
if( GetPacket( p_access, &ck ) ) if( GetPacket( p_access, &ck ) )
{ {
int i_ret = -1; int i_ret = -1;
...@@ -437,13 +439,13 @@ static int Restart( access_t *p_access ) ...@@ -437,13 +439,13 @@ static int Restart( access_t *p_access )
if( Describe( p_access, &psz_location ) ) if( Describe( p_access, &psz_location ) )
{ {
msg_Err( p_access, "describe failed" ); msg_Err( p_access, "describe failed" );
return VLC_ENGENERIC; return VLC_EGENERIC;
} }
/* */ /* */
if( Start( p_access, 0 ) ) if( Start( p_access, 0 ) )
{ {
msg_Err( p_access, "Start failed" ); msg_Err( p_access, "Start failed" );
return VLC_ENGENERIC; return VLC_EGENERIC;
} }
return VLC_SUCCESS; return VLC_SUCCESS;
} }
...@@ -465,7 +467,7 @@ static int Reset( access_t *p_access ) ...@@ -465,7 +467,7 @@ static int Reset( access_t *p_access )
/* Get the next header FIXME memory loss ? */ /* Get the next header FIXME memory loss ? */
GetHeader( p_access ); GetHeader( p_access );
if( p_sys->i_header <= 0 ) if( p_sys->i_header <= 0 )
return VLC_ENGENERIC; return VLC_EGENERIC;
E_( asf_HeaderParse )( &p_sys->asfh, E_( asf_HeaderParse )( &p_sys->asfh,
p_sys->p_header, p_sys->i_header ); p_sys->p_header, p_sys->i_header );
...@@ -749,7 +751,7 @@ static void GetHeader( access_t *p_access ) ...@@ -749,7 +751,7 @@ static void GetHeader( access_t *p_access )
/***************************************************************************** /*****************************************************************************
* Start stream * Start stream
*****************************************************************************/ ****************************************************************************/
static int Start( access_t *p_access, off_t i_pos ) static int Start( access_t *p_access, off_t i_pos )
{ {
access_sys_t *p_sys = p_access->p_sys; access_sys_t *p_sys = p_access->p_sys;
...@@ -816,6 +818,7 @@ static int Start( access_t *p_access, off_t i_pos ) ...@@ -816,6 +818,7 @@ static int Start( access_t *p_access, off_t i_pos )
} }
} }
net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, "\r\n" ); net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, "\r\n" );
#if 0
net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
"Connection: Close\r\n" ); "Connection: Close\r\n" );
...@@ -824,11 +827,12 @@ static int Start( access_t *p_access, off_t i_pos ) ...@@ -824,11 +827,12 @@ static int Start( access_t *p_access, off_t i_pos )
msg_Err( p_access, "failed to send request" ); msg_Err( p_access, "failed to send request" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
#endif
psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, NULL ); psz = net_Gets( VLC_OBJECT(p_access), p_sys->fd, NULL );
if( psz == NULL ) if( psz == NULL )
{ {
msg_Err( p_access, "cannot read data" ); msg_Err( p_access, "cannot read data 0" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
...@@ -847,7 +851,7 @@ static int Start( access_t *p_access, off_t i_pos ) ...@@ -847,7 +851,7 @@ static int Start( access_t *p_access, off_t i_pos )
char *psz = net_Gets( p_access, p_sys->fd, NULL ); char *psz = net_Gets( p_access, p_sys->fd, NULL );
if( psz == NULL ) if( psz == NULL )
{ {
msg_Err( p_access, "cannot read data" ); msg_Err( p_access, "cannot read data 1" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
if( *psz == '\0' ) if( *psz == '\0' )
...@@ -898,7 +902,10 @@ static int GetPacket( access_t * p_access, chunk_t *p_ck ) ...@@ -898,7 +902,10 @@ static int GetPacket( access_t * p_access, chunk_t *p_ck )
* entire header. * entire header.
*/ */
if( net_Read( p_access, p_sys->fd, NULL, p_sys->buffer, 4, VLC_TRUE ) < 4 ) if( net_Read( p_access, p_sys->fd, NULL, p_sys->buffer, 4, VLC_TRUE ) < 4 )
{
msg_Err( p_access, "cannot read data 2" );
return VLC_EGENERIC; return VLC_EGENERIC;
}
p_ck->i_type = GetWLE( p_sys->buffer); p_ck->i_type = GetWLE( p_sys->buffer);
p_ck->i_size = GetWLE( p_sys->buffer + 2); p_ck->i_size = GetWLE( p_sys->buffer + 2);
...@@ -909,7 +916,7 @@ static int GetPacket( access_t * p_access, chunk_t *p_ck ) ...@@ -909,7 +916,7 @@ static int GetPacket( access_t * p_access, chunk_t *p_ck )
if( net_Read( p_access, p_sys->fd, NULL, p_sys->buffer + 4, restsize, VLC_TRUE ) < restsize ) if( net_Read( p_access, p_sys->fd, NULL, p_sys->buffer + 4, restsize, VLC_TRUE ) < restsize )
{ {
msg_Err( p_access, "cannot read data" ); msg_Err( p_access, "cannot read data 3" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
p_ck->i_sequence = GetDWLE( p_sys->buffer + 4); p_ck->i_sequence = GetDWLE( p_sys->buffer + 4);
...@@ -956,7 +963,7 @@ static int GetPacket( access_t * p_access, chunk_t *p_ck ) ...@@ -956,7 +963,7 @@ static int GetPacket( access_t * p_access, chunk_t *p_ck )
(net_Read( p_access, p_sys->fd, NULL, &p_sys->buffer[12], (net_Read( p_access, p_sys->fd, NULL, &p_sys->buffer[12],
p_ck->i_data, VLC_TRUE ) < p_ck->i_data) ) p_ck->i_data, VLC_TRUE ) < p_ck->i_data) )
{ {
msg_Err( p_access, "cannot read data" ); msg_Err( p_access, "cannot read data 4" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment