2009-03-01 13:13:25 +00:00
|
|
|
/*
|
|
|
|
* precise timer routines for Linux
|
|
|
|
* copyright (C) LGB & A'rpi/ASTRAL
|
|
|
|
*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
2002-03-24 00:58:27 +00:00
|
|
|
#include <stdlib.h>
|
2001-10-25 23:34:14 +00:00
|
|
|
#include <time.h>
|
2001-02-24 20:28:24 +00:00
|
|
|
#include <sys/time.h>
|
2005-11-14 00:30:37 +00:00
|
|
|
#include "config.h"
|
2008-08-12 10:46:01 +00:00
|
|
|
#include "timer.h"
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-10-19 02:16:21 +00:00
|
|
|
int usec_sleep(int usec_delay)
|
|
|
|
{
|
2001-11-23 18:25:32 +00:00
|
|
|
#ifdef HAVE_NANOSLEEP
|
2001-10-19 02:16:21 +00:00
|
|
|
struct timespec ts;
|
|
|
|
ts.tv_sec = usec_delay / 1000000;
|
|
|
|
ts.tv_nsec = (usec_delay % 1000000) * 1000;
|
|
|
|
return nanosleep(&ts, NULL);
|
|
|
|
#else
|
|
|
|
return usleep(usec_delay);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-03-13 00:13:18 +00:00
|
|
|
// Returns current time in microseconds
|
2009-04-19 22:27:02 +00:00
|
|
|
unsigned int GetTimer(void)
|
|
|
|
{
|
2001-02-24 20:28:24 +00:00
|
|
|
struct timeval tv;
|
2006-05-13 05:56:40 +00:00
|
|
|
gettimeofday(&tv,NULL);
|
2008-05-16 09:42:28 +00:00
|
|
|
return tv.tv_sec * 1000000 + tv.tv_usec;
|
2009-07-06 23:26:13 +00:00
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2002-01-27 17:59:12 +00:00
|
|
|
// Returns current time in milliseconds
|
2009-04-19 22:27:02 +00:00
|
|
|
unsigned int GetTimerMS(void)
|
|
|
|
{
|
2002-01-27 17:59:12 +00:00
|
|
|
struct timeval tv;
|
2006-05-13 05:56:40 +00:00
|
|
|
gettimeofday(&tv,NULL);
|
2008-05-16 09:42:28 +00:00
|
|
|
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
|
2009-07-06 23:26:13 +00:00
|
|
|
}
|
2002-01-27 17:59:12 +00:00
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
// Initialize timer, must be called at least once at start
|
2009-04-19 22:27:02 +00:00
|
|
|
void InitTimer(void)
|
|
|
|
{
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|