[vlc-commits] demux:mp4: the local i_next_dts in TrackCreateSamplesIndex() is not a vlc_tick_t
Steve Lhomme
git at videolan.org
Fri Jul 6 09:20:28 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | 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
*/
More information about the vlc-commits
mailing list