[MPlayer-cvslog] r22745 - trunk/stream/tv.c

voroshil subversion at mplayerhq.hu
Mon Mar 19 13:28:53 CET 2007


Author: voroshil
Date: Mon Mar 19 13:28:53 2007
New Revision: 22745

Modified:
   trunk/stream/tv.c

Log:
Make sure bogus parameter will not be ignored by user. 


Modified: trunk/stream/tv.c
==============================================================================
--- trunk/stream/tv.c	(original)
+++ trunk/stream/tv.c	Mon Mar 19 13:28:53 2007
@@ -171,7 +171,7 @@ static int norm_from_string(tvi_handle_t
     else if (!strcasecmp(norm, "ntscjp"))
 	return TV_NORM_NTSCJP;
     else {
-	mp_msg(MSGT_TV, MSGL_V, "tv.c: norm_from_string(%s): Bogus norm parameter, setting PAL.\n", norm);
+	mp_msg(MSGT_TV, MSGL_WARN, "tv.c: norm_from_string(%s): Bogus norm parameter, setting PAL.\n", norm);
 	return TV_NORM_PAL;
     }
 #ifdef HAVE_TV_V4L2



More information about the MPlayer-cvslog mailing list