2009-03-01 13:13:25 +00:00
|
|
|
/*
|
|
|
|
* precise timer routines for Windows
|
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* This file is part of mpv.
|
2009-03-01 13:13:25 +00:00
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or modify
|
2009-03-01 13:13:25 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is distributed in the hope that it will be useful,
|
2009-03-01 13:13:25 +00:00
|
|
|
* 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
|
2015-04-13 07:36:54 +00:00
|
|
|
* with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2009-03-01 13:13:25 +00:00
|
|
|
*/
|
2003-04-25 10:00:18 +00:00
|
|
|
|
|
|
|
#include <windows.h>
|
2013-05-25 15:12:03 +00:00
|
|
|
#include <sys/time.h>
|
2003-04-25 10:00:18 +00:00
|
|
|
#include <mmsystem.h>
|
2014-02-06 20:04:24 +00:00
|
|
|
#include <stdlib.h>
|
2003-04-25 10:00:18 +00:00
|
|
|
#include "timer.h"
|
|
|
|
|
2013-05-17 17:54:37 +00:00
|
|
|
void mp_sleep_us(int64_t us)
|
2009-01-05 14:48:03 +00:00
|
|
|
{
|
2013-05-17 17:54:37 +00:00
|
|
|
if (us < 0)
|
|
|
|
return;
|
|
|
|
// Sleep(0) won't sleep for one clocktick as the unix usleep
|
|
|
|
// instead it will only make the thread ready
|
|
|
|
// it may take some time until it actually starts to run again
|
|
|
|
if (us < 1000)
|
|
|
|
us = 1000;
|
|
|
|
Sleep(us / 1000);
|
2003-04-25 10:00:18 +00:00
|
|
|
}
|
|
|
|
|
2015-01-19 17:47:59 +00:00
|
|
|
#if defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0 && defined(CLOCK_MONOTONIC)
|
|
|
|
uint64_t mp_raw_time_us(void)
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
if (clock_gettime(CLOCK_MONOTONIC, &ts))
|
|
|
|
abort();
|
|
|
|
return ts.tv_sec * 1000000LL + ts.tv_nsec / 1000;
|
|
|
|
}
|
|
|
|
#else
|
2013-05-17 17:54:37 +00:00
|
|
|
uint64_t mp_raw_time_us(void)
|
2009-01-05 14:48:03 +00:00
|
|
|
{
|
2013-05-25 15:12:03 +00:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv,NULL);
|
|
|
|
return tv.tv_sec * 1000000LL + tv.tv_usec;
|
2003-04-25 10:00:18 +00:00
|
|
|
}
|
2015-01-19 17:47:59 +00:00
|
|
|
#endif
|
2003-04-25 10:00:18 +00:00
|
|
|
|
2013-05-17 17:54:37 +00:00
|
|
|
void mp_raw_time_init(void)
|
2009-01-05 14:48:03 +00:00
|
|
|
{
|
2014-02-06 20:04:24 +00:00
|
|
|
timeBeginPeriod(1); // request 1ms timer resolution
|
2003-04-25 10:00:18 +00:00
|
|
|
}
|