diff mencoder.c @ 17005:3047b92e8402

print the number of encoded frames per seconds (fps) with a greater precision (float instead of int). Original thread: Date: Nov 17, 2005 3:25 PM Subject: [MPlayer-dev-eng] [PATCH] MEncoder: print more precise FPS
author gpoirier
date Thu, 17 Nov 2005 19:17:53 +0000
parents 4951a3abcd1a
children dd5be8f8d16d
line wrap: on
line diff
--- a/mencoder.c	Thu Nov 17 15:52:04 2005 +0000
+++ b/mencoder.c	Thu Nov 17 19:17:53 2005 +0000
@@ -1426,9 +1426,9 @@
 			duplicatedframes, badframes, skippedframes
 		);
 	} else
-	mp_msg(MSGT_AVSYNC,MSGL_STATUS,"Pos:%6.1fs %6df (%2d%%) %3dfps Trem:%4dmin %3dmb  A-V:%5.3f [%d:%d]\r",
+	mp_msg(MSGT_AVSYNC,MSGL_STATUS,"Pos:%6.1fs %6df (%2d%%) %5.2ffps Trem:%4dmin %3dmb  A-V:%5.3f [%d:%d]\r",
 	    mux_v->timer, decoded_frameno, (int)(p*100),
-	    (t>1) ? (int)(decoded_frameno/t+0.5) : 0,
+	    (t>1) ? (float)(decoded_frameno/t) : 0,
 	    (p>0.001) ? (int)((t/p-t)/60) : 0, 
 	    (p>0.001) ? (int)(ftello(muxer_f)/p/1024/1024) : 0,
 	    v_pts_corr,