libavutil/time.c
ae0a3016
 /*
104c9146
  * Copyright (c) 2000-2003 Fabrice Bellard
ae0a3016
  *
104c9146
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
ae0a3016
  * 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.
  *
104c9146
  * FFmpeg is distributed in the hope that it will be useful,
ae0a3016
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
104c9146
  * License along with FFmpeg; if not, write to the Free Software
ae0a3016
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
61183b5a
 #include "config.h"
 
ae0a3016
 #include <stddef.h>
 #include <stdint.h>
d3d3a32c
 #include <time.h>
61183b5a
 #if HAVE_GETTIMEOFDAY
ae0a3016
 #include <sys/time.h>
d3d3a32c
 #endif
 #if HAVE_UNISTD_H
 #include <unistd.h>
 #endif
 #if HAVE_WINDOWS_H
61183b5a
 #include <windows.h>
 #endif
ae0a3016
 
a0b901a3
 #include "time.h"
d3d3a32c
 #include "error.h"
ae0a3016
 
 int64_t av_gettime(void)
 {
61183b5a
 #if HAVE_GETTIMEOFDAY
ae0a3016
     struct timeval tv;
     gettimeofday(&tv, NULL);
     return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
61183b5a
 #elif HAVE_GETSYSTEMTIMEASFILETIME
     FILETIME ft;
     int64_t t;
     GetSystemTimeAsFileTime(&ft);
     t = (int64_t)ft.dwHighDateTime << 32 | ft.dwLowDateTime;
     return t / 10 - 11644473600000000; /* Jan 1, 1601 */
 #else
     return -1;
 #endif
ae0a3016
 }
d3d3a32c
 
0eec06ed
 int64_t av_gettime_relative(void)
 {
 #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
     struct timespec ts;
     clock_gettime(CLOCK_MONOTONIC, &ts);
     return (int64_t)ts.tv_sec * 1000000 + ts.tv_nsec / 1000;
 #else
     return av_gettime();
 #endif
 }
 
 int av_gettime_relative_is_monotonic(void)
 {
 #if HAVE_CLOCK_GETTIME && defined(CLOCK_MONOTONIC)
     return 1;
 #else
     return 0;
 #endif
 }
 
d3d3a32c
 int av_usleep(unsigned usec)
 {
 #if HAVE_NANOSLEEP
     struct timespec ts = { usec / 1000000, usec % 1000000 * 1000 };
     while (nanosleep(&ts, &ts) < 0 && errno == EINTR);
     return 0;
 #elif HAVE_USLEEP
     return usleep(usec);
 #elif HAVE_SLEEP
     Sleep(usec / 1000);
     return 0;
 #else
     return AVERROR(ENOSYS);
 #endif
 }