Commit 4bac8299 authored by Clément Stenac's avatar Clément Stenac

Don't print error on non-fatal problems

parent a215cc39
...@@ -95,7 +95,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -95,7 +95,7 @@ static int Open( vlc_object_t * p_this )
return VLC_EGENERIC; return VLC_EGENERIC;
} }
msg_Err( p_demux, "this doesn't look like an MPEG-4 ES stream, continuing" ); msg_Warn( p_demux, "this doesn't look like an MPEG-4 ES stream, continuing anyway" );
} }
p_demux->pf_demux = Demux; p_demux->pf_demux = Demux;
......
...@@ -213,7 +213,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block ) ...@@ -213,7 +213,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
if( p_sys->i_buffer > 10*1000000 ) if( p_sys->i_buffer > 10*1000000 )
{ {
msg_Err( p_dec, "mmh reseting context" ); msg_Warn( p_dec, "reseting context" );
p_sys->i_buffer = 0; p_sys->i_buffer = 0;
} }
......
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