1 /*
2 * Copyright(c) 2019 Intel Corporation
3 *
4 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at https://www.aomedia.org/license/software-license. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at https://www.aomedia.org/license/patent-license.
10 */
11 
12 #ifndef EbTime_h
13 #define EbTime_h
14 
15 #include <stdint.h>
16 
17 void   app_svt_av1_sleep(const unsigned milliseconds);
18 double app_svt_av1_compute_overall_elapsed_time(const uint64_t start_seconds,
19                                                 const uint64_t start_useconds,
20                                                 const uint64_t finish_seconds,
21                                                 const uint64_t finish_useconds);
22 void   app_svt_av1_get_time(uint64_t *const seconds, uint64_t *const useconds);
23 
24 #endif // EbTime_h
25 /* File EOF */
26