1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-18 05:37:04 +00:00

cosmetics: reindent

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29198 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-04-19 22:27:02 +00:00
parent 2bed79b908
commit fc4f741709

View File

@ -30,9 +30,9 @@
const char *timer_name = const char *timer_name =
#ifdef HAVE_NANOSLEEP #ifdef HAVE_NANOSLEEP
"nanosleep()"; "nanosleep()";
#else #else
"usleep()"; "usleep()";
#endif #endif
int usec_sleep(int usec_delay) int usec_sleep(int usec_delay)
@ -48,47 +48,54 @@ int usec_sleep(int usec_delay)
} }
// Returns current time in microseconds // Returns current time in microseconds
unsigned int GetTimer(void){ unsigned int GetTimer(void)
struct timeval tv; {
// float s; struct timeval tv;
gettimeofday(&tv,NULL); //float s;
// s=tv.tv_usec;s*=0.000001;s+=tv.tv_sec; gettimeofday(&tv,NULL);
return tv.tv_sec * 1000000 + tv.tv_usec; //s = tv.tv_usec; s *= 0.000001; s += tv.tv_sec;
return tv.tv_sec * 1000000 + tv.tv_usec;
} }
// Returns current time in milliseconds // Returns current time in milliseconds
unsigned int GetTimerMS(void){ unsigned int GetTimerMS(void)
struct timeval tv; {
// float s; struct timeval tv;
gettimeofday(&tv,NULL); //float s;
// s=tv.tv_usec;s*=0.000001;s+=tv.tv_sec; gettimeofday(&tv,NULL);
return tv.tv_sec * 1000 + tv.tv_usec / 1000; //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 // Returns time spent between now and last call in seconds
float GetRelativeTime(void){ float GetRelativeTime(void)
unsigned int t,r; {
t=GetTimer(); unsigned int t,r;
// t*=16;printf("time=%ud\n",t); t = GetTimer();
r=t-RelativeTime; //t *= 16; printf("time = %ud\n", t);
RelativeTime=t; r = t - RelativeTime;
return (float)r * 0.000001F; RelativeTime = t;
return (float) r * 0.000001F;
} }
// Initialize timer, must be called at least once at start // Initialize timer, must be called at least once at start
void InitTimer(void){ void InitTimer(void)
GetRelativeTime(); {
GetRelativeTime();
} }
#if 0 #if 0
#include <stdio.h> #include <stdio.h>
int main(void){ int main(void)
float t=0; {
InitTimer(); float t = 0;
while(1){ t+=GetRelativeTime();printf("time= %10.6f\r",t);fflush(stdout); } InitTimer();
while (1) {
t += GetRelativeTime();
printf("time = %10.6f\r", t);
fflush(stdout); }
} }
#endif #endif