[vlc-commits] sout:chromecast: fix vlc_tick_t type of local variable
Steve Lhomme
git at videolan.org
Tue Sep 18 13:53:23 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Sep 18 13:34:26 2018 +0200| [c499be54ddb6c8fdda1470d43c2f6ca790cfa4b2] | committer: Steve Lhomme
sout:chromecast: fix vlc_tick_t type of local variable
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c499be54ddb6c8fdda1470d43c2f6ca790cfa4b2
---
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