[vlc-commits] qt: setTime() takes a vlc_tick_t

Steve Lhomme git at videolan.org
Tue Sep 18 16:53:26 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Sat May  5 17:20:10 2018 +0200| [80010059eaca6643ad047a7ae880fb8f62a768a3] | committer: Steve Lhomme

qt: setTime() takes a vlc_tick_t

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=80010059eaca6643ad047a7ae880fb8f62a768a3
---

 modules/gui/qt/input_manager.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/gui/qt/input_manager.cpp b/modules/gui/qt/input_manager.cpp
index 98b9856f7d..0ce4626344 100644
--- a/modules/gui/qt/input_manager.cpp
+++ b/modules/gui/qt/input_manager.cpp
@@ -162,7 +162,7 @@ void InputManager::delInput()
     char *uri = input_item_GetURI( p_item );
     if( uri != NULL ) {
         float f_pos = var_GetFloat( p_input , "position" );
-        int64_t i_time = -1;
+        vlc_tick_t i_time = -1;
 
         if( f_pos >= 0.05f && f_pos <= 0.95f
          && var_GetInteger( p_input, "length" ) >= VLC_TICK_FROM_SEC(60))



More information about the vlc-commits mailing list