mirror of
https://github.com/mpv-player/mpv
synced 2025-02-18 13:47:04 +00:00
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 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17006 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
4e999610e7
commit
618d511e43
@ -1426,9 +1426,9 @@ if(sh_audio && !demuxer2){
|
||||
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,
|
||||
|
Loading…
Reference in New Issue
Block a user