Commit 9f9e9578 authored by Christophe Massiot's avatar Christophe Massiot

Fixed a bug in System End Code handling. Contact me in case of problem.

parent 20ff5191
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* input_ps.c: PS demux and packet management * input_ps.c: PS demux and packet management
***************************************************************************** *****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN * Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input_ps.c,v 1.32 2001/08/07 02:48:25 sam Exp $ * $Id: input_ps.c,v 1.33 2001/08/10 16:38:09 massiot Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* Cyril Deguet <asmax@via.ecp.fr> * Cyril Deguet <asmax@via.ecp.fr>
...@@ -470,7 +470,7 @@ static int PSRead( input_thread_t * p_input, ...@@ -470,7 +470,7 @@ static int PSRead( input_thread_t * p_input,
for( i_packet = 0; i_packet < INPUT_READ_ONCE; i_packet++ ) for( i_packet = 0; i_packet < INPUT_READ_ONCE; i_packet++ )
{ {
/* Read what we believe to be a packet header. */ /* Read what we believe to be a packet header. */
if( (i_error = SafeRead( p_input, p_header, 6 )) ) if( (i_error = SafeRead( p_input, p_header, 4 )) )
{ {
return( i_error ); return( i_error );
} }
...@@ -504,36 +504,47 @@ static int PSRead( input_thread_t * p_input, ...@@ -504,36 +504,47 @@ static int PSRead( input_thread_t * p_input,
} }
/* Packet found. */ /* Packet found. */
*(u32 *)p_header = U32_AT(&i_startcode); *(u32 *)p_header = U32_AT(&i_startcode);
if( (i_error = SafeRead( p_input, p_header + 4, 2 )) )
{
return( i_error );
}
} }
if( U32_AT(p_header) != 0x1BA ) /* 0x1B9 == SYSTEM_END_CODE, it is only 4 bytes long. */
if( U32_AT(p_header) != 0x1B9 )
{ {
/* That's the case for all packets, except pack header. */ /* The packet is at least 6 bytes long. */
i_packet_size = U16_AT(&p_header[4]); if( (i_error = SafeRead( p_input, p_header + 4, 2 )) )
}
else
{
/* Pack header. */
if( (p_header[4] & 0xC0) == 0x40 )
{ {
/* MPEG-2 */ return( i_error );
i_packet_size = 8;
} }
else if( (p_header[4] & 0xF0) == 0x20 )
if( U32_AT(p_header) != 0x1BA )
{ {
/* MPEG-1 */ /* That's the case for all packets, except pack header. */
i_packet_size = 6; i_packet_size = U16_AT(&p_header[4]);
} }
else else
{ {
intf_ErrMsg( "Unable to determine stream type" ); /* Pack header. */
return( -1 ); if( (p_header[4] & 0xC0) == 0x40 )
{
/* MPEG-2 */
i_packet_size = 8;
}
else if( (p_header[4] & 0xF0) == 0x20 )
{
/* MPEG-1 */
i_packet_size = 6;
}
else
{
intf_ErrMsg( "Unable to determine stream type" );
return( -1 );
}
} }
} }
else
{
/* System End Code */
i_packet_size = -2;
}
/* Fetch a packet of the appropriate size. */ /* Fetch a packet of the appropriate size. */
p_data = NewPacket( p_input->p_method_data, i_packet_size + 6 ); p_data = NewPacket( p_input->p_method_data, i_packet_size + 6 );
...@@ -543,30 +554,38 @@ static int PSRead( input_thread_t * p_input, ...@@ -543,30 +554,38 @@ static int PSRead( input_thread_t * p_input,
return( -1 ); return( -1 );
} }
/* Copy the header we already read. */ if( U32_AT(p_header) != 0x1B9 )
memcpy( p_data->p_buffer, p_header, 6 );
/* Read the remaining of the packet. */
if( i_packet_size && (i_error =
SafeRead( p_input, p_data->p_buffer + 6, i_packet_size )) )
{ {
return( i_error ); /* Copy the header we already read. */
} memcpy( p_data->p_buffer, p_header, 6 );
/* In MPEG-2 pack headers we still have to read stuffing bytes. */ /* Read the remaining of the packet. */
if( U32_AT(p_header) == 0x1BA ) if( i_packet_size && (i_error =
{ SafeRead( p_input, p_data->p_buffer + 6, i_packet_size )) )
if( i_packet_size == 8 && (p_data->p_buffer[13] & 0x7) != 0 )
{ {
/* MPEG-2 stuffing bytes */ return( i_error );
byte_t p_garbage[8]; }
if( (i_error = SafeRead( p_input, p_garbage,
p_data->p_buffer[13] & 0x7)) ) /* In MPEG-2 pack headers we still have to read stuffing bytes. */
if( U32_AT(p_header) == 0x1BA )
{
if( i_packet_size == 8 && (p_data->p_buffer[13] & 0x7) != 0 )
{ {
return( i_error ); /* MPEG-2 stuffing bytes */
byte_t p_garbage[8];
if( (i_error = SafeRead( p_input, p_garbage,
p_data->p_buffer[13] & 0x7)) )
{
return( i_error );
}
} }
} }
} }
else
{
/* Copy the small header. */
memcpy( p_data->p_buffer, p_header, 4 );
}
/* Give the packet to the other input stages. */ /* Give the packet to the other input stages. */
pp_packets[i_packet] = p_data; pp_packets[i_packet] = p_data;
......
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