[vlc-commits] avcodec: demux: UpdateSeekPoint() takes an vlc_tick_t value

Steve Lhomme git at videolan.org
Wed Sep 19 11:58:39 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri May 11 19:39:41 2018 +0200| [624080ba00a9a930a9cef13628b9c5e2b1b8a94e] | committer: Steve Lhomme

avcodec: demux: UpdateSeekPoint() takes an vlc_tick_t value

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=624080ba00a9a930a9cef13628b9c5e2b1b8a94e
---

 modules/demux/avformat/demux.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/demux/avformat/demux.c b/modules/demux/avformat/demux.c
index 284c03565f..9278251067 100644
--- a/modules/demux/avformat/demux.c
+++ b/modules/demux/avformat/demux.c
@@ -94,7 +94,7 @@ static int IORead( void *opaque, uint8_t *buf, int buf_size );
 static int64_t IOSeek( void *opaque, int64_t offset, int whence );
 
 static block_t *BuildSsaFrame( const AVPacket *p_pkt, unsigned i_order );
-static void UpdateSeekPoint( demux_t *p_demux, int64_t i_time );
+static void UpdateSeekPoint( demux_t *p_demux, vlc_tick_t i_time );
 static void ResetTime( demux_t *p_demux, int64_t i_time );
 
 static vlc_fourcc_t CodecTagToFourcc( uint32_t codec_tag )
@@ -904,7 +904,7 @@ static int Demux( demux_t *p_demux )
     return 1;
 }
 
-static void UpdateSeekPoint( demux_t *p_demux, int64_t i_time )
+static void UpdateSeekPoint( demux_t *p_demux, vlc_tick_t i_time )
 {
     demux_sys_t *p_sys = p_demux->p_sys;
     int i;



More information about the vlc-commits mailing list