[MPlayer-cvslog] r29742 - in trunk: help/help_mp-bg.h help/help_mp-cs.h help/help_mp-de.h help/help_mp-dk.h help/help_mp-el.h help/help_mp-en.h help/help_mp-es.h help/help_mp-fr.h help/help_mp-hu.h help/help_mp-it....

diego subversion at mplayerhq.hu
Wed Sep 30 16:55:43 CEST 2009


Author: diego
Date: Wed Sep 30 16:55:43 2009
New Revision: 29742

Log:
Reduce console output verbosity: Move colorspace information to verbose mode.

Modified:
   trunk/libmpcodecs/vd.c

Changes in other areas also in this revision:
Modified:
   trunk/help/help_mp-bg.h
   trunk/help/help_mp-cs.h
   trunk/help/help_mp-de.h
   trunk/help/help_mp-dk.h
   trunk/help/help_mp-el.h
   trunk/help/help_mp-en.h
   trunk/help/help_mp-es.h
   trunk/help/help_mp-fr.h
   trunk/help/help_mp-hu.h
   trunk/help/help_mp-it.h
   trunk/help/help_mp-ja.h
   trunk/help/help_mp-ko.h
   trunk/help/help_mp-mk.h
   trunk/help/help_mp-nl.h
   trunk/help/help_mp-pl.h
   trunk/help/help_mp-pt_BR.h
   trunk/help/help_mp-ru.h
   trunk/help/help_mp-sk.h
   trunk/help/help_mp-sv.h
   trunk/help/help_mp-tr.h
   trunk/help/help_mp-uk.h
   trunk/help/help_mp-zh_CN.h
   trunk/help/help_mp-zh_TW.h

Modified: trunk/libmpcodecs/vd.c
==============================================================================
--- trunk/libmpcodecs/vd.c	Wed Sep 30 10:19:49 2009	(r29741)
+++ trunk/libmpcodecs/vd.c	Wed Sep 30 16:55:43 2009	(r29742)
@@ -148,7 +148,9 @@ int mpcodecs_config_vo(sh_video_t *sh, i
     if(!sh->disp_w || !sh->disp_h)
 	return 0;
 
-    mp_msg(MSGT_DECVIDEO,MSGL_INFO,MSGTR_VoConfigRequest,w,h,vo_format_name(preferred_outfmt));
+    mp_msg(MSGT_DECVIDEO, MSGL_V,
+           "VDec: vo config request - %d x %d (preferred colorspace: %s)\n",
+           w, h, vo_format_name(preferred_outfmt));
 
 //    if(!vf) return 1; // temp hack
 
@@ -226,7 +228,8 @@ csp_again:
 	return 0;	// failed
     }
     out_fmt=sh->codec->outfmt[j];
-    mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_UsingXAsOutputCspNoY,vo_format_name(out_fmt),j);
+    mp_msg(MSGT_CPLAYER, MSGL_V, "VDec: using %s as output csp (no %d)\n",
+           vo_format_name(out_fmt), j);
     sh->outfmtidx=j;
     sh->vfilter=vf;
 


More information about the MPlayer-cvslog mailing list