2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 * Use of this source code is governed by a BSD-style license
5 * 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
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
12 #ifndef VPX_PORTS_VPX_TIMER_H_
13 #define VPX_PORTS_VPX_TIMER_H_
15 #include "./vpx_config.h"
17 #include "vpx/vpx_integer.h"
23 * Win32 specific includes
25 #ifndef WIN32_LEAN_AND_MEAN
26 #define WIN32_LEAN_AND_MEAN
31 * POSIX specific includes
35 /* timersub is not provided by msys at this time. */
37 #define timersub(a, b, result) \
39 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
40 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
41 if ((result)->tv_usec < 0) { \
43 (result)->tv_usec += 1000000; \
50 struct vpx_usec_timer
{
52 LARGE_INTEGER begin
, end
;
54 struct timeval begin
, end
;
60 vpx_usec_timer_start(struct vpx_usec_timer
*t
) {
62 QueryPerformanceCounter(&t
->begin
);
64 gettimeofday(&t
->begin
, NULL
);
70 vpx_usec_timer_mark(struct vpx_usec_timer
*t
) {
72 QueryPerformanceCounter(&t
->end
);
74 gettimeofday(&t
->end
, NULL
);
80 vpx_usec_timer_elapsed(struct vpx_usec_timer
*t
) {
82 LARGE_INTEGER freq
, diff
;
84 diff
.QuadPart
= t
->end
.QuadPart
- t
->begin
.QuadPart
;
86 QueryPerformanceFrequency(&freq
);
87 return diff
.QuadPart
* 1000000 / freq
.QuadPart
;
91 timersub(&t
->end
, &t
->begin
, &diff
);
92 return diff
.tv_sec
* 1000000 + diff
.tv_usec
;
96 #else /* CONFIG_OS_SUPPORT = 0*/
98 /* Empty timer functions if CONFIG_OS_SUPPORT = 0 */
100 #define timersub(a, b, result)
103 struct vpx_usec_timer
{
108 vpx_usec_timer_start(struct vpx_usec_timer
*t
) { }
111 vpx_usec_timer_mark(struct vpx_usec_timer
*t
) { }
114 vpx_usec_timer_elapsed(struct vpx_usec_timer
*t
) {
118 #endif /* CONFIG_OS_SUPPORT */
120 #endif // VPX_PORTS_VPX_TIMER_H_