vlc | branch: master | Steve Lhomme <[email protected]> | 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 <[email protected]> > 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 */ _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
