From d1628d12f5a3b37ebd4cd75e0ca1ed4cd1c40be4 Mon Sep 17 00:00:00 2001 From: uau Date: Tue, 14 Nov 2006 06:56:17 +0000 Subject: [PATCH] simplify git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20914 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/mplayer.c b/mplayer.c index fe1843fe3d..15f83543c1 100644 --- a/mplayer.c +++ b/mplayer.c @@ -4454,18 +4454,12 @@ if(time_frame>0.001 && !(vo_flags&256)) //====================== FLIP PAGE (VIDEO BLT): ========================= current_module="flip_page"; - if (!frame_time_remaining) { - if(blit_frame){ + if (!frame_time_remaining && blit_frame) { unsigned int t2=GetTimer(); - double tt; if(vo_config_count) video_out->flip_page(); -// usec_sleep(50000); // test only! - t2=GetTimer()-t2; - tt = t2*0.000001f; - vout_time_usage+=tt; - } + vout_time_usage += (GetTimer() - t2) * 0.000001; } //====================== A-V TIMESTAMP CORRECTION: =========================