[vlc-commits] packetizer: mpeg4audio: i_diff is an mtime_t
    Steve Lhomme 
    git at videolan.org
       
    Thu Jun 14 16:41:13 CEST 2018
    
    
  
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu Jun 14 11:51:49 2018 +0200| [833b3d086c2416b4a658d06fd00fdce3ae449ddb] | committer: Steve Lhomme
packetizer: mpeg4audio: i_diff is an mtime_t
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=833b3d086c2416b4a658d06fd00fdce3ae449ddb
---
 modules/packetizer/mpeg4audio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/packetizer/mpeg4audio.c b/modules/packetizer/mpeg4audio.c
index 9f5fe4532b..9c571c3c7e 100644
--- a/modules/packetizer/mpeg4audio.c
+++ b/modules/packetizer/mpeg4audio.c
@@ -329,7 +329,7 @@ static block_t *ForwardRawBlock(decoder_t *p_dec, block_t **pp_block)
     p_block = *pp_block;
     *pp_block = NULL; /* Don't reuse this block */
 
-    int64_t i_diff = 0;
+    mtime_t i_diff = 0;
     if (p_block->i_pts != VLC_TS_INVALID &&
         p_block->i_pts != date_Get(&p_sys->end_date))
     {
    
    
More information about the vlc-commits
mailing list