From c43b6de185878ea645982dcd0e8d1ddee240f769 Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Fri, 8 Jun 2018 14:12:55 +0200 Subject: [PATCH] demux:mp4: the local i_time in FragGetMoofByTfraIndex() is not an mtime_t --- 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 fd181f3332..5982605c0a 100644 --- a/modules/demux/mp4/mp4.c +++ b/modules/demux/mp4/mp4.c @@ -4837,7 +4837,7 @@ static int FragGetMoofByTfraIndex( demux_t *p_demux, const mtime_t i_target_time stime_t i_track_target_time = MP4_rescale( i_target_time, CLOCK_FREQ, p_track->i_timescale ); for ( uint32_t i = 0; ii_number_of_entries; i += ( p_data->i_version == 1 ) ? 2 : 1 ) { - mtime_t i_time; + stime_t i_time; uint64_t i_offset; if ( p_data->i_version == 1 ) { -- 2.11.4.GIT