1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

dbus: increase player timer period

This commit is contained in:
Thomas Guillem 2021-02-12 14:34:42 +01:00
parent dd9cdd1c52
commit 0bf2da02c2

View File

@ -310,7 +310,7 @@ static int Open( vlc_object_t *p_this )
.on_discontinuity = player_timer_on_discontinuity,
};
p_sys->player_timer =
vlc_player_AddTimer(player, VLC_TICK_INVALID, &player_timer_cbs, p_intf);
vlc_player_AddTimer(player, VLC_TICK_FROM_SEC(1), &player_timer_cbs, p_intf);
if (!p_sys->player_timer)
goto player_timer_failure;