From d57ae057829981a58dbd01ba401c9c64656ae01c Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Sat, 5 May 2018 10:13:45 +0200 Subject: [PATCH] input_internal: the start/stop/current time are mtime_t values MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémi Denis-Courmont --- 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 */