From fc4f7417095597625c8fbeec44984e7d78439224 Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 19 Apr 2009 22:27:02 +0000 Subject: cosmetics: reindent git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29198 b3059339-0415-0410-9bf9-f77b7e298cf2 --- osdep/timer-linux.c | 69 +++++++++++++++++++++++++++++------------------------ 1 file changed, 38 insertions(+), 31 deletions(-) (limited to 'osdep') diff --git a/osdep/timer-linux.c b/osdep/timer-linux.c index 0304936bdd..8c1af557a0 100644 --- a/osdep/timer-linux.c +++ b/osdep/timer-linux.c @@ -30,9 +30,9 @@ const char *timer_name = #ifdef HAVE_NANOSLEEP - "nanosleep()"; + "nanosleep()"; #else - "usleep()"; + "usleep()"; #endif int usec_sleep(int usec_delay) @@ -48,47 +48,54 @@ int usec_sleep(int usec_delay) } // Returns current time in microseconds -unsigned int GetTimer(void){ - struct timeval tv; -// float s; - gettimeofday(&tv,NULL); -// s=tv.tv_usec;s*=0.000001;s+=tv.tv_sec; - return tv.tv_sec * 1000000 + tv.tv_usec; -} +unsigned int GetTimer(void) +{ + struct timeval tv; + //float s; + gettimeofday(&tv,NULL); + //s = tv.tv_usec; s *= 0.000001; s += tv.tv_sec; + return tv.tv_sec * 1000000 + tv.tv_usec; +} // Returns current time in milliseconds -unsigned int GetTimerMS(void){ - struct timeval tv; -// float s; - gettimeofday(&tv,NULL); -// s=tv.tv_usec;s*=0.000001;s+=tv.tv_sec; - return tv.tv_sec * 1000 + tv.tv_usec / 1000; -} +unsigned int GetTimerMS(void) +{ + struct timeval tv; + //float s; + gettimeofday(&tv,NULL); + //s = tv.tv_usec; s *= 0.000001; s += tv.tv_sec; + return tv.tv_sec * 1000 + tv.tv_usec / 1000; +} -static unsigned int RelativeTime=0; +static unsigned int RelativeTime = 0; // Returns time spent between now and last call in seconds -float GetRelativeTime(void){ -unsigned int t,r; - t=GetTimer(); -// t*=16;printf("time=%ud\n",t); - r=t-RelativeTime; - RelativeTime=t; - return (float)r * 0.000001F; +float GetRelativeTime(void) +{ + unsigned int t,r; + t = GetTimer(); + //t *= 16; printf("time = %ud\n", t); + r = t - RelativeTime; + RelativeTime = t; + return (float) r * 0.000001F; } // Initialize timer, must be called at least once at start -void InitTimer(void){ - GetRelativeTime(); +void InitTimer(void) +{ + GetRelativeTime(); } #if 0 #include -int main(void){ - float t=0; - InitTimer(); - while(1){ t+=GetRelativeTime();printf("time= %10.6f\r",t);fflush(stdout); } +int main(void) +{ + float t = 0; + InitTimer(); + while (1) { + t += GetRelativeTime(); + printf("time = %10.6f\r", t); + fflush(stdout); } } #endif - -- cgit v1.2.3