]> git.sesse.net Git - vlc/commitdiff
Requalified some error messages into warnings.
authorChristophe Massiot <massiot@videolan.org>
Sun, 19 Jan 2003 16:57:32 +0000 (16:57 +0000)
committerChristophe Massiot <massiot@videolan.org>
Sun, 19 Jan 2003 16:57:32 +0000 (16:57 +0000)
modules/demux/avi/avi.c

index 7f9ac16dee5c9303b5a753f4e486ecab29cc1c2d..58362db312681a52e08ac7a1c869bdc33f893233 100644 (file)
@@ -2,7 +2,7 @@
  * avi.c : AVI file Stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: avi.c,v 1.25 2003/01/13 04:46:49 fenrir Exp $
+ * $Id: avi.c,v 1.26 2003/01/19 16:57:32 massiot Exp $
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -1892,8 +1892,8 @@ static int AVIDemux_Seekable( input_thread_t *p_input )
                         default:
                             if( AVI_PacketNext( p_input ) )
                             {
-                                msg_Err( p_input,
-                                         "cannot skip packet, track disabled" );
+                                msg_Warn( p_input,
+                                          "cannot skip packet, track disabled" );
                                 return( AVI_StreamStopFinishedStreams( p_input, p_avi ) ? 0 : 1 );
                             }
                             break;
@@ -1924,8 +1924,8 @@ static int AVIDemux_Seekable( input_thread_t *p_input )
                     {
                         if( AVI_PacketNext( p_input ) )
                         {
-                            msg_Err( p_input,
-                                     "cannot skip packet, track disabled" );
+                            msg_Warn( p_input,
+                                      "cannot skip packet, track disabled" );
                             return( AVI_StreamStopFinishedStreams( p_input, p_avi ) ? 0 : 1 );
                         }
                     }