Commit df385c26 authored by Laurent Aimar's avatar Laurent Aimar

* all: converted some msg_Err into msg_Warn

parent d9a524f3
......@@ -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 );
}
......
......@@ -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 );
......
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