Commit db4b575c authored by Antoine Cellerier's avatar Antoine Cellerier

Simplify.

parent 94007db4
...@@ -351,7 +351,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -351,7 +351,7 @@ static int Open( vlc_object_t * p_this )
p_sys->b_still = true; p_sys->b_still = true;
if( val.f_float) if( val.f_float)
{ {
p_sys->i_still_length =1000000.0 / val.f_float; p_sys->i_still_length = 1000000.0 / val.f_float;
} }
else else
{ {
...@@ -431,10 +431,9 @@ static int MimeDemux( demux_t *p_demux ) ...@@ -431,10 +431,9 @@ static int MimeDemux( demux_t *p_demux )
{ {
demux_sys_t *p_sys = p_demux->p_sys; demux_sys_t *p_sys = p_demux->p_sys;
int i_size, i; int i_size, i;
bool b_match;
bool b_done;
b_match = CheckMimeHeader( p_demux, &i_size ); bool b_match = CheckMimeHeader( p_demux, &i_size );
if( i_size > 0 ) if( i_size > 0 )
{ {
stream_Read( p_demux->s, NULL, i_size ); stream_Read( p_demux->s, NULL, i_size );
...@@ -454,6 +453,7 @@ static int MimeDemux( demux_t *p_demux ) ...@@ -454,6 +453,7 @@ static int MimeDemux( demux_t *p_demux )
msg_Warn( p_demux, "cannot peek data" ); msg_Warn( p_demux, "cannot peek data" );
return 0; return 0;
} }
i = 0; i = 0;
i_size = strlen( p_sys->psz_separator ) + 2; i_size = strlen( p_sys->psz_separator ) + 2;
if( p_sys->i_data_peeked < i_size ) if( p_sys->i_data_peeked < i_size )
...@@ -461,8 +461,8 @@ static int MimeDemux( demux_t *p_demux ) ...@@ -461,8 +461,8 @@ static int MimeDemux( demux_t *p_demux )
msg_Warn( p_demux, "data shortage" ); msg_Warn( p_demux, "data shortage" );
return 0; return 0;
} }
b_done = false;
while( !b_done ) for( ;; )
{ {
while( !( p_sys->p_peek[i] == '-' && p_sys->p_peek[i+1] == '-' ) ) while( !( p_sys->p_peek[i] == '-' && p_sys->p_peek[i+1] == '-' ) )
{ {
...@@ -481,17 +481,16 @@ static int MimeDemux( demux_t *p_demux ) ...@@ -481,17 +481,16 @@ static int MimeDemux( demux_t *p_demux )
} }
} }
} }
if( !strncmp( p_sys->psz_separator, (char *)(p_sys->p_peek + i + 2), if( !strncmp( p_sys->psz_separator, (char *)(p_sys->p_peek + i + 2),
strlen( p_sys->psz_separator ) ) ) strlen( p_sys->psz_separator ) ) )
{ {
b_done = true; break;
} }
else
{
i++; i++;
i_size++; i_size++;
} }
}
if( !b_match ) if( !b_match )
{ {
......
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