summaryrefslogtreecommitdiffstats
path: root/test/test_utils.h
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2023-10-18 15:45:47 +0200
committersfan5 <sfan5@live.de>2023-10-20 21:30:51 +0200
commitdad4e61b68ba6bd941c481b957e7df1052fba088 (patch)
treec3fb7fef28e0b058b570684b23260444e4aa9d0f /test/test_utils.h
parentaf53ce18bdde9fe283be2b409231db5e69f90526 (diff)
downloadmpv-dad4e61b68ba6bd941c481b957e7df1052fba088.tar.bz2
mpv-dad4e61b68ba6bd941c481b957e7df1052fba088.tar.xz
test: add basic tests for timer code
Diffstat (limited to 'test/test_utils.h')
-rw-r--r--test/test_utils.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/test_utils.h b/test/test_utils.h
index ac1dfb5d1d..66615d3710 100644
--- a/test/test_utils.h
+++ b/test/test_utils.h
@@ -54,13 +54,3 @@ int mp_msg_level(struct mp_log *log);
void mp_write_console_ansi(void);
typedef struct AVDictionary AVDictionary;
void mp_set_avdict(AVDictionary **dict, char **kv);
-
-// Windows additionally requires timer related code so it will actually
-// import the real versions of these functions and use them. On other
-// platforms, these can just be stubs for simplicity.
-#ifndef WIN32_TESTS
-void mp_rel_time_to_timespec(void);
-void mp_time_ns(void);
-void mp_time_ns_add(void);
-void mp_time_ns_to_realtime(void);
-#endif