2009-03-01 13:13:25 +00:00
|
|
|
/*
|
|
|
|
* precise timer routines for Windows
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-02-06 20:04:24 +00:00
|
|
|
static void restore_timer(void)
|
|
|
|
{
|
|
|
|
// The MSDN documents that begin/end "must" be matched. This satisfies
|
|
|
|
// this requirement.
|
|
|
|
timeEndPeriod(1);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
atexit(restore_timer);
|
2003-04-25 10:00:18 +00:00
|
|
|
}
|