From 406fd668692e611dd71a0e703fa33b69797fb242 Mon Sep 17 00:00:00 2001 From: Arran Ubels Date: Sat, 15 Jun 2024 23:34:16 +1000 Subject: [PATCH] Start time not used yet --- library.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library.c b/library.c index a51caf3..99e5c4d 100644 --- a/library.c +++ b/library.c @@ -25,7 +25,7 @@ static int ItemChange(vlc_object_t *p_this, const char *psz_var, vlc_value_t oldval, vlc_value_t newval, void *p_data); struct current_item_t { - vlc_tick_t i_start; /**< playing start */ + // vlc_tick_t i_start; /**< playing start */ }; struct intf_sys_t { @@ -102,7 +102,7 @@ static int ItemChange(vlc_object_t *p_this, const char *psz_var, return VLC_SUCCESS; } - p_sys->p_current_item.i_start = mdate(); + // p_sys->p_current_item.i_start = mdate(); TODO - switch on multiple different tags based on progress. p_sys->p_input = vlc_object_hold(p_input); var_AddCallback(p_input, "intf-event", PlayingChange, p_intf);