From 7e5636f683cd9d30600c6eb160a871a9ca3e2398 Mon Sep 17 00:00:00 2001 From: nplourde Date: Fri, 29 Apr 2005 10:48:32 +0000 Subject: use darwin accurate timer git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15289 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/mplayer.c b/mplayer.c index 970b11985a..bb99bc4937 100644 --- a/mplayer.c +++ b/mplayer.c @@ -1045,6 +1045,8 @@ int gui_no_filename=0; srand((int) time(NULL)); + InitTimer(); + mp_msg_init(); mp_msg_set_level(MSGL_STATUS); @@ -2214,8 +2216,6 @@ if(loop_times==1) loop_times = -1; mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_StartPlaying);fflush(stdout); -InitTimer(); - #ifdef USE_DVDNAV if (stream->type==STREAMTYPE_DVDNAV) { dvdnav_stream_fullstart((dvdnav_priv_t *)stream->priv); @@ -2457,6 +2457,15 @@ if(time_frame>0.001 && !(vo_flags&256)){ } } else #endif +#ifdef SYS_DARWIN + { + current_module="sleep_darwin"; + while(time_frame>0.005) { + usec_sleep(1000000*time_frame); + time_frame-=GetRelativeTime(); + } + } +#else { // -------- TIMER + SOFTSLEEP ----------- float min=softsleep?0.021:0.005; @@ -2474,7 +2483,7 @@ if(time_frame>0.001 && !(vo_flags&256)){ while(time_frame>0) time_frame-=GetRelativeTime(); // burn the CPU } } - +#endif } //if(!frame_time_remaining){ // should we display the frame now? -- cgit v1.2.3