]> git.sesse.net Git - vlc/commitdiff
mtime: Minimize imprecision and prevent overflow on darwin.
authorPierre d'Herbemont <pdherbemont@free.fr>
Thu, 30 Sep 2010 19:00:06 +0000 (21:00 +0200)
committerPierre d'Herbemont <pdherbemont@free.fr>
Fri, 1 Oct 2010 19:44:06 +0000 (21:44 +0200)
Pointed-out-by: RĂ©mi Denis-Courmont.
src/misc/mtime.c

index 80ed1169ee3f3eb39967d1be350f1ee592cd8484..115dbe9ffc6cce42a2ef2e9a5dde211a035b9fd1 100644 (file)
@@ -216,11 +216,16 @@ mtime_t mdate( void )
     uint64_t date = mach_absolute_time();
     mach_timebase_info_data_t tb = mtime_timebase_info;
 
-    /* Get the ssystem dependent factor. Switch to double to prevent overflow */
-    double factor = (double) tb.numer / (double) tb.denom;
-    /* Convert to microseconds */
-    double d = (double) date * factor / 1000;
-    res = d;
+    /* tb.denom is uint32_t, switch to 64 bits to prevent overflow. */
+    uint64_t denom = tb.denom;
+
+    /* Switch to microsecs */
+    denom *= 1000LL;
+
+    /* Split the division to prevent overflow */
+    lldiv_t d = lldiv (tb.numer, denom);
+
+    res = (d.quot * date) + ((d.rem * date) / denom);
 
 #elif defined( WIN32 ) || defined( UNDER_CE )
     /* We don't need the real date, just the value of a high precision timer */