Browse Source

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

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
pull/70/head
Steve Lhomme 8 years ago
committed by Rémi Denis-Courmont
parent
commit
d57ae05782
  1. 6
      src/input/input_internal.h

6
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 */

Loading…
Cancel
Save