[MPlayer-cvslog] r23312 - trunk/mplayer.c

uau subversion at mplayerhq.hu
Mon May 14 03:23:53 CEST 2007


Author: uau
Date: Mon May 14 03:23:52 2007
New Revision: 23312

Log:
Output message fix

Add missing '\n' to "pts value <= previous", change level to INFO


Modified:
   trunk/mplayer.c

Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c	(original)
+++ trunk/mplayer.c	Mon May 14 03:23:52 2007
@@ -2056,7 +2056,7 @@ static double update_video(int *blit_fra
 	    sh_video->last_pts= sh_video->pts;
 	else if (sh_video->last_pts >= sh_video->pts) {
 	    sh_video->last_pts = sh_video->pts;
-	    mp_msg(MSGT_CPLAYER, MSGL_WARN, "pts value <= previous");
+	    mp_msg(MSGT_CPLAYER, MSGL_INFO, "pts value <= previous\n");
 	}
 	frame_time = sh_video->pts - sh_video->last_pts;
 	sh_video->last_pts = sh_video->pts;



More information about the MPlayer-cvslog mailing list