[vlc-commits] sout:chromecast: fix vlc_tick_t type of local variable
    Steve Lhomme 
    git at videolan.org
       
    Tue Sep 18 14:08:17 CEST 2018
    
    
  
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Sep 18 13:34:26 2018 +0200| [7e17fc8013a2cddfb4ac159d9e1714cccdb89270] | committer: Steve Lhomme
sout:chromecast: fix vlc_tick_t type of local variable
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7e17fc8013a2cddfb4ac159d9e1714cccdb89270
---
 modules/stream_out/chromecast/chromecast_demux.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/stream_out/chromecast/chromecast_demux.cpp b/modules/stream_out/chromecast/chromecast_demux.cpp
index eefa209372..cf860d8d8a 100644
--- a/modules/stream_out/chromecast/chromecast_demux.cpp
+++ b/modules/stream_out/chromecast/chromecast_demux.cpp
@@ -199,7 +199,7 @@ struct demux_cc
         if( m_start_time < 0 )
             return -1;
 
-        int64_t time = m_start_time;
+        vlc_tick_t time = m_start_time;
         vlc_tick_t cc_time = getCCTime();
 
         if( cc_time != VLC_TICK_INVALID )
    
    
More information about the vlc-commits
mailing list