blob: c8335a0a83bbd9b296c40d31314479fa82545733 [file] [log] [blame]
John Koleszar0ea50ce2010-05-18 11:58:33 -04001/*
John Koleszarc2140b82010-09-09 08:16:39 -04002 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
John Koleszar0ea50ce2010-05-18 11:58:33 -04003 *
John Koleszar94c52e42010-06-18 12:39:21 -04004 * Use of this source code is governed by a BSD-style license
John Koleszar09202d82010-06-04 16:19:40 -04005 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
John Koleszar94c52e42010-06-18 12:39:21 -04007 * in the file PATENTS. All contributing project authors may
John Koleszar09202d82010-06-04 16:19:40 -04008 * be found in the AUTHORS file in the root of the source tree.
John Koleszar0ea50ce2010-05-18 11:58:33 -04009 */
10
11
12#ifndef VPX_TIMER_H
13#define VPX_TIMER_H
14
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020015#if CONFIG_OS_SUPPORT
16
John Koleszardaab4bc2010-09-02 12:03:51 -040017#if defined(_WIN32)
John Koleszar0ea50ce2010-05-18 11:58:33 -040018/*
19 * Win32 specific includes
20 */
21#ifndef WIN32_LEAN_AND_MEAN
22#define WIN32_LEAN_AND_MEAN
23#endif
24#include <windows.h>
25#else
26/*
27 * POSIX specific includes
28 */
29#include <sys/time.h>
30
31/* timersub is not provided by msys at this time. */
32#ifndef timersub
33#define timersub(a, b, result) \
34 do { \
35 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
36 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
37 if ((result)->tv_usec < 0) { \
38 --(result)->tv_sec; \
39 (result)->tv_usec += 1000000; \
40 } \
41 } while (0)
42#endif
43#endif
44
45
46struct vpx_usec_timer
47{
John Koleszardaab4bc2010-09-02 12:03:51 -040048#if defined(_WIN32)
John Koleszar0ea50ce2010-05-18 11:58:33 -040049 LARGE_INTEGER begin, end;
50#else
51 struct timeval begin, end;
52#endif
53};
54
55
John Koleszar5e344612010-06-24 09:02:48 -040056static void
John Koleszar0ea50ce2010-05-18 11:58:33 -040057vpx_usec_timer_start(struct vpx_usec_timer *t)
58{
John Koleszardaab4bc2010-09-02 12:03:51 -040059#if defined(_WIN32)
John Koleszar0ea50ce2010-05-18 11:58:33 -040060 QueryPerformanceCounter(&t->begin);
61#else
62 gettimeofday(&t->begin, NULL);
63#endif
64}
65
66
John Koleszar5e344612010-06-24 09:02:48 -040067static void
John Koleszar0ea50ce2010-05-18 11:58:33 -040068vpx_usec_timer_mark(struct vpx_usec_timer *t)
69{
John Koleszardaab4bc2010-09-02 12:03:51 -040070#if defined(_WIN32)
John Koleszar0ea50ce2010-05-18 11:58:33 -040071 QueryPerformanceCounter(&t->end);
72#else
73 gettimeofday(&t->end, NULL);
74#endif
75}
76
77
John Koleszar5e344612010-06-24 09:02:48 -040078static long
John Koleszar0ea50ce2010-05-18 11:58:33 -040079vpx_usec_timer_elapsed(struct vpx_usec_timer *t)
80{
John Koleszardaab4bc2010-09-02 12:03:51 -040081#if defined(_WIN32)
John Koleszar0ea50ce2010-05-18 11:58:33 -040082 LARGE_INTEGER freq, diff;
83
84 diff.QuadPart = t->end.QuadPart - t->begin.QuadPart;
85
86 if (QueryPerformanceFrequency(&freq) && diff.QuadPart < freq.QuadPart)
87 return (long)(diff.QuadPart * 1000000 / freq.QuadPart);
88
89 return 1000000;
90#else
91 struct timeval diff;
92
93 timersub(&t->end, &t->begin, &diff);
94 return diff.tv_sec ? 1000000 : diff.tv_usec;
95#endif
96}
97
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020098#else /* CONFIG_OS_SUPPORT = 0*/
99
100/* Empty timer functions if CONFIG_OS_SUPPORT = 0 */
101#ifndef timersub
102#define timersub(a, b, result)
103#endif
104
105struct vpx_usec_timer
106{
107 void *dummy;
108};
109
110static void
111vpx_usec_timer_start(struct vpx_usec_timer *t) { }
112
113static void
114vpx_usec_timer_mark(struct vpx_usec_timer *t) { }
115
116static long
117vpx_usec_timer_elapsed(struct vpx_usec_timer *t) { return 0; }
118
119#endif /* CONFIG_OS_SUPPORT */
John Koleszar0ea50ce2010-05-18 11:58:33 -0400120
121#endif