[vlc-devel] [PATCH 01/16] vlc_common: add helper function to convert milliseconds to/from mtime_t

Steve Lhomme robux4 at ycbcr.xyz
Thu Jun 7 11:59:45 CEST 2018


From: RĂ©mi Denis-Courmont <remi at remlab.net>

---
 include/vlc_common.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/include/vlc_common.h b/include/vlc_common.h
index da334710af..d79ed61221 100644
--- a/include/vlc_common.h
+++ b/include/vlc_common.h
@@ -288,6 +288,10 @@
  */
 typedef int64_t mtime_t;
 
+#define MS_TO_MTIME(ms) ((ms) * (CLOCK_FREQ / 1000))
+#define MTIME_TO_MS(ms) (((ms) * 1000) / CLOCK_FREQ)
+
+
 /**
  * The vlc_fourcc_t type.
  *
-- 
2.17.0



More information about the vlc-devel mailing list