[vlc-commits] demux:mp4: the i_start in TrackTimeToSampleChunk() is a vlc_tick_t
Steve Lhomme
git at videolan.org
Fri Jul 6 09:20:29 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri Jun 8 14:25:42 2018 +0200| [09f5070644fad4a9f101ae039c897702bbb63306] | committer: Steve Lhomme
demux:mp4: the i_start in TrackTimeToSampleChunk() is a vlc_tick_t
That's the kind of data it is given
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=09f5070644fad4a9f101ae039c897702bbb63306
---
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 3296858564..7d6f309c78 100644
--- a/modules/demux/mp4/mp4.c
+++ b/modules/demux/mp4/mp4.c
@@ -3068,7 +3068,7 @@ static int TrackGetNearestSeekPoint( demux_t *p_demux, mp4_track_t *p_track,
* it also update elst field of the track
*/
static int TrackTimeToSampleChunk( demux_t *p_demux, mp4_track_t *p_track,
- int64_t i_start, uint32_t *pi_chunk,
+ vlc_tick_t i_start, uint32_t *pi_chunk,
uint32_t *pi_sample )
{
demux_sys_t *p_sys = p_demux->p_sys;
More information about the vlc-commits
mailing list