]> git.sesse.net Git - vlc/commitdiff
Don't print error on non-fatal problems
authorClément Stenac <zorglub@videolan.org>
Fri, 20 May 2005 16:59:07 +0000 (16:59 +0000)
committerClément Stenac <zorglub@videolan.org>
Fri, 20 May 2005 16:59:07 +0000 (16:59 +0000)
modules/demux/mpeg/m4v.c
modules/packetizer/mpeg4video.c

index 584b2c5a9423a03fe43c297e2d3699bc5fbff525..869b2b3dc550d7e318d70315c82a6641d6c15d07 100644 (file)
@@ -95,7 +95,7 @@ static int Open( vlc_object_t * p_this )
             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;
index 2801b0e93e88f0a585517a4c1e02b1356995c69c..cd23db2a167cf1a3936de8c979e9a050a997a710 100644 (file)
@@ -213,7 +213,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
 
     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;
     }