]> git.sesse.net Git - vlc/blobdiff - modules/demux/mpeg/m4v.c
* all: converted some msg_Err into msg_Warn
[vlc] / modules / demux / mpeg / m4v.c
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 );