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
|
|
|
|
2013-05-17 17:54:37 +00:00
|
|
|
void mp_sleep_us(int64_t us)
|
2001-10-19 02:16:21 +00:00
|
|
|
{
|
2013-05-17 17:54:37 +00:00
|
|
|
if (us < 0)
|
|
|
|
return;
|
2013-07-16 11:28:28 +00:00
|
|
|
#if HAVE_NANOSLEEP
|
2001-10-19 02:16:21 +00:00
|
|
|
struct timespec ts;
|
2013-05-17 17:54:37 +00:00
|
|
|
ts.tv_sec = us / 1000000;
|
|
|
|
ts.tv_nsec = (us % 1000000) * 1000;
|
|
|
|
nanosleep(&ts, NULL);
|
2001-10-19 02:16:21 +00:00
|
|
|
#else
|
2013-05-17 17:54:37 +00:00
|
|
|
usleep(us);
|
2001-10-19 02:16:21 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-05-17 17:54:37 +00:00
|
|
|
uint64_t mp_raw_time_us(void)
|
2009-04-19 22:27:02 +00:00
|
|
|
{
|
2013-05-17 17:54:37 +00:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv,NULL);
|
|
|
|
return tv.tv_sec * 1000000LL + tv.tv_usec;
|
2009-07-06 23:26:13 +00:00
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2013-05-17 17:54:37 +00:00
|
|
|
void mp_raw_time_init(void)
|
2009-04-19 22:27:02 +00:00
|
|
|
{
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|