os_support.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Various utilities for ffmpeg system
  3. * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "config.h"
  22. #include "avformat.h"
  23. #if defined(CONFIG_WINCE)
  24. /* Skip includes on WinCE. */
  25. #elif defined(__MINGW32__)
  26. #include <sys/types.h>
  27. #include <sys/timeb.h>
  28. #elif defined(CONFIG_OS2)
  29. #include <string.h>
  30. #include <sys/time.h>
  31. #else
  32. #include <unistd.h>
  33. #include <fcntl.h>
  34. #include <sys/time.h>
  35. #endif
  36. #include <time.h>
  37. /**
  38. * gets the current time in micro seconds.
  39. */
  40. int64_t av_gettime(void)
  41. {
  42. #if defined(CONFIG_WINCE)
  43. return timeGetTime() * int64_t_C(1000);
  44. #elif defined(__MINGW32__)
  45. struct timeb tb;
  46. _ftime(&tb);
  47. return ((int64_t)tb.time * int64_t_C(1000) + (int64_t)tb.millitm) * int64_t_C(1000);
  48. #else
  49. struct timeval tv;
  50. gettimeofday(&tv,NULL);
  51. return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
  52. #endif
  53. }
  54. #if !defined(CONFIG_WINCE)
  55. #if !defined(HAVE_LOCALTIME_R)
  56. struct tm *localtime_r(const time_t *t, struct tm *tp)
  57. {
  58. struct tm *l;
  59. l = localtime(t);
  60. if (!l)
  61. return 0;
  62. *tp = *l;
  63. return tp;
  64. }
  65. #endif /* !defined(HAVE_LOCALTIME_R) */
  66. #endif /* !defined(CONFIG_WINCE) */