[vlc-commits] sout:chromecast: i_longest_duration is a vlc_tick_t
Steve Lhomme
git at videolan.org
Tue Sep 18 13:53:21 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Sep 18 13:33:18 2018 +0200| [e681a8b251ce9ae7d335b17c9472781fa4816b83] | committer: Steve Lhomme
sout:chromecast: i_longest_duration is a vlc_tick_t
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e681a8b251ce9ae7d335b17c9472781fa4816b83
---
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 14b21d7fe6..eefa209372 100644
--- a/modules/stream_out/chromecast/chromecast_demux.cpp
+++ b/modules/stream_out/chromecast/chromecast_demux.cpp
@@ -104,7 +104,7 @@ struct demux_cc
&i_nb_titles, &i_title_offset,
&i_chapter_offset ) == VLC_SUCCESS )
{
- int64_t i_longest_duration = 0;
+ vlc_tick_t i_longest_duration = 0;
int i_longest_title = 0;
bool b_is_interactive = false;
for( int i = 0 ; i < i_nb_titles; ++i )
More information about the vlc-commits
mailing list