]> git.sesse.net Git - vlc/commitdiff
* all: converted some msg_Err into msg_Warn
authorLaurent Aimar <fenrir@videolan.org>
Mon, 20 Jan 2003 13:06:34 +0000 (13:06 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 20 Jan 2003 13:06:34 +0000 (13:06 +0000)
modules/demux/mpeg/audio.c
modules/demux/mpeg/m4v.c

index 85a407096f3813f40ccfe6756dc5a2ec27974eb4..17cee67cb6021ae93a98121d558aac2ecabd055f 100644 (file)
@@ -2,7 +2,7 @@
  * audio.c : mpeg audio Stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: audio.c,v 1.9 2002/10/23 21:54:33 gbazin Exp $
+ * $Id: audio.c,v 1.10 2003/01/20 13:06:34 fenrir Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  * 
@@ -689,7 +689,7 @@ static int Demux( input_thread_t * p_input )
      */
     if( !ReadPES( p_input, &p_pes, p_demux->i_framelength + i_skip) )
     {
-        msg_Err( p_input,
+        msg_Warn( p_input,
                 "cannot read data" );
         return( -1 );
     }
index 942acdead320c64b52845984ad7c4d5e6d008cf5..8814752cbfdf5b63732d38d6c7de19d7999bb361 100644 (file)
@@ -2,7 +2,7 @@
  * m4v.c : MPEG-4 video Stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: m4v.c,v 1.1 2003/01/12 06:39:45 fenrir Exp $
+ * $Id: m4v.c,v 1.2 2003/01/20 13:06:34 fenrir Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -220,7 +220,7 @@ static int Demux( input_thread_t * p_input )
         if( ( i_peek = input_Peek( p_input, &p_peek, 512 ) ) < 5 )
         {
             /* Stream shorter than 4 bytes... */
-            msg_Err( p_input, "cannot peek()" );
+            msg_Warn( p_input, "cannot peek()" );
             return( 0 );
         }
 
@@ -234,7 +234,7 @@ static int Demux( input_thread_t * p_input )
                                           &p_data,
                                           i_size ) ) < 0 )
         {
-            msg_Err( p_input, "error while reading data" );
+            msg_Warn( p_input, "error while reading data" );
             break;
         }
         PESAddDataPacket( p_pes, p_data );
@@ -246,7 +246,7 @@ static int Demux( input_thread_t * p_input )
         if( ( i_peek = input_Peek( p_input, &p_peek, 512 ) ) < 5 )
         {
             /* Stream shorter than 4 bytes... */
-            msg_Err( p_input, "cannot peek()" );
+            msg_Warn( p_input, "cannot peek()" );
             return( 0 );
         }
 
@@ -266,7 +266,7 @@ static int Demux( input_thread_t * p_input )
                                           &p_data,
                                           i_size ) ) < 0 )
         {
-            msg_Err( p_input, "error while reading data" );
+            msg_Warn( p_input, "error while reading data" );
             break;
         }
         PESAddDataPacket( p_pes, p_data );