summaryrefslogtreecommitdiffstats
path: root/osdep/timer.h
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2023-09-15 01:39:35 +0200
committerDudemanguy <random342@airmail.cc>2023-09-29 20:48:58 +0000
commitda4c4d2ebd2473677045b85f923cb14349b1e60d (patch)
tree9c664eae20220d598bb3ce336a5d7c7cbe3973e9 /osdep/timer.h
parent381386330bd3663055250e6883f1c0c1e4069eec (diff)
downloadmpv-da4c4d2ebd2473677045b85f923cb14349b1e60d.tar.bz2
mpv-da4c4d2ebd2473677045b85f923cb14349b1e60d.tar.xz
timer: rename mp_time_us_to_timespec to reflect what it actually does
Diffstat (limited to 'osdep/timer.h')
-rw-r--r--osdep/timer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/timer.h b/osdep/timer.h
index 8cc1d9dc27..b98c275697 100644
--- a/osdep/timer.h
+++ b/osdep/timer.h
@@ -55,7 +55,7 @@ void mp_end_hires_timers(int resolution_ms);
int64_t mp_add_timeout(int64_t time_us, double timeout_sec);
// Convert the mp time in microseconds to a timespec using CLOCK_REALTIME.
-struct timespec mp_time_us_to_timespec(int64_t time_us);
+struct timespec mp_time_us_to_realtime(int64_t time_us);
// Convert the relative timeout in seconds to a timespec.
// The timespec is absolute, using CLOCK_REALTIME.