2009-03-01 13:13:25 +00:00
|
|
|
/*
|
2015-04-13 07:36:54 +00:00
|
|
|
* This file is part of mpv.
|
2009-03-01 13:13:25 +00:00
|
|
|
*
|
2017-05-05 10:34:56 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2009-03-01 13:13:25 +00:00
|
|
|
*
|
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
|
2017-05-05 10:34:56 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2009-03-01 13:13:25 +00:00
|
|
|
*
|
2017-05-05 10:34:56 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2009-03-01 13:13:25 +00:00
|
|
|
*/
|
|
|
|
|
2007-07-31 07:04:07 +00:00
|
|
|
#ifndef MPLAYER_TIMER_H
|
|
|
|
#define MPLAYER_TIMER_H
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2013-05-17 17:54:37 +00:00
|
|
|
#include <inttypes.h>
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2013-05-17 17:54:37 +00:00
|
|
|
// Initialize timer, must be called at least once at start.
|
|
|
|
void mp_time_init(void);
|
|
|
|
|
|
|
|
// Return time in microseconds. Never wraps. Never returns 0 or negative values.
|
|
|
|
int64_t mp_time_us(void);
|
|
|
|
|
|
|
|
// Return time in seconds. Can have down to 1 microsecond resolution, but will
|
|
|
|
// be much worse when casted to float.
|
|
|
|
double mp_time_sec(void);
|
|
|
|
|
|
|
|
// Provided by OS specific functions (timer-linux.c)
|
|
|
|
void mp_raw_time_init(void);
|
|
|
|
uint64_t mp_raw_time_us(void);
|
|
|
|
|
|
|
|
// Sleep in microseconds.
|
|
|
|
void mp_sleep_us(int64_t us);
|
|
|
|
|
2015-01-26 10:31:02 +00:00
|
|
|
#define MP_START_TIME 10000000
|
|
|
|
|
2018-09-01 11:04:45 +00:00
|
|
|
// Duration of a second in mpv time.
|
|
|
|
#define MP_SECOND_US (1000 * 1000)
|
|
|
|
|
2014-05-18 14:36:08 +00:00
|
|
|
// Add a time in seconds to the given time in microseconds, and return it.
|
|
|
|
// Takes care of possible overflows. Never returns a negative or 0 time.
|
|
|
|
int64_t mp_add_timeout(int64_t time_us, double timeout_sec);
|
|
|
|
|
|
|
|
// Convert the mp time in microseconds to a timespec using CLOCK_REALTIME.
|
|
|
|
struct timespec mp_time_us_to_timespec(int64_t time_us);
|
|
|
|
|
2015-05-11 21:44:36 +00:00
|
|
|
// Convert the relative timeout in seconds to a timespec.
|
|
|
|
// The timespec is absolute, using CLOCK_REALTIME.
|
|
|
|
struct timespec mp_rel_time_to_timespec(double timeout_sec);
|
|
|
|
|
2007-07-31 07:04:07 +00:00
|
|
|
#endif /* MPLAYER_TIMER_H */
|