]> git.sesse.net Git - vlc/commitdiff
* Changed an Error message. Many people did not understand:
authorDerk-Jan Hartman <hartman@videolan.org>
Tue, 18 Feb 2003 00:20:01 +0000 (00:20 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Tue, 18 Feb 2003 00:20:01 +0000 (00:20 +0000)
  no suitable decoder module for fourcc `IV31'
  I have appended:
  VLC probably does not support this sound or video format.

src/input/input_dec.c

index 905d8d8b2b2842f859ee8c8223ae35295afb4991..246369ec875be0f598e9042377010907cee133bc 100644 (file)
@@ -2,7 +2,7 @@
  * input_dec.c: Functions for the management of decoders
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: input_dec.c,v 1.57 2003/01/25 03:12:20 fenrir Exp $
+ * $Id: input_dec.c,v 1.58 2003/02/18 00:20:01 hartman Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -120,7 +120,7 @@ decoder_fifo_t * input_RunDecoder( input_thread_t * p_input,
 
     if( p_fifo->p_module == NULL )
     {
-        msg_Err( p_fifo, "no suitable decoder module for fourcc `%4.4s'",
+        msg_Err( p_fifo, "no suitable decoder module for fourcc `%4.4s'.\nVLC probably does not support this sound or video format.",
                        (char*)&p_fifo->i_fourcc );
         DeleteDecoderFifo( p_fifo );
         vlc_object_destroy( p_fifo );