[vlc-commits] input_internal: the start/stop/current time are mtime_t values

Steve Lhomme git at videolan.org
Sat May 5 18:10:35 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Sat May  5 10:13:45 2018 +0200| [d57ae057829981a58dbd01ba401c9c64656ae01c] | committer: Rémi Denis-Courmont

input_internal: the start/stop/current time are mtime_t values

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d57ae057829981a58dbd01ba401c9c64656ae01c
---

 src/input/input_internal.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/input/input_internal.h b/src/input/input_internal.h
index 1c8a877bd9..c0b8ae4756 100644
--- a/src/input/input_internal.h
+++ b/src/input/input_internal.h
@@ -103,9 +103,9 @@ typedef struct input_thread_private_t
     int         i_rate;
 
     /* Playtime configuration and state */
-    int64_t     i_start;    /* :start-time,0 by default */
-    int64_t     i_stop;     /* :stop-time, 0 if none */
-    int64_t     i_time;     /* Current time */
+    mtime_t     i_start;    /* :start-time,0 by default */
+    mtime_t     i_stop;     /* :stop-time, 0 if none */
+    mtime_t     i_time;     /* Current time */
     bool        b_fast_seek;/* :input-fast-seek */
 
     /* Output */



More information about the vlc-commits mailing list