vlc | branch: master | Steve Lhomme <[email protected]> | Fri Jun 8 14:23:47 2018 +0200| [4bfaff3a3f1807a33e0403b650118728833b8ee1] | committer: Steve Lhomme
demux:mp4: the local i_next_dts in TrackCreateSamplesIndex() is not a vlc_tick_t > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4bfaff3a3f1807a33e0403b650118728833b8ee1 --- modules/demux/mp4/mp4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/demux/mp4/mp4.c b/modules/demux/mp4/mp4.c index fb4a2e6d9f..3296858564 100644 --- a/modules/demux/mp4/mp4.c +++ b/modules/demux/mp4/mp4.c @@ -2615,7 +2615,7 @@ static int TrackCreateSamplesIndex( demux_t *p_demux, /* FIXME: refactor STTS & CTTS, STTS having now only few extra lines and * differing in 2/2 fields and 1 signedness */ - vlc_tick_t i_next_dts = 0; + int64_t i_next_dts = 0; /* Find stts * Gives mapping between sample and decoding time */ _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
