[vlc-commits] mux:asf: the i_preroll_time is not an mtime_t
    Steve Lhomme 
    git at videolan.org
       
    Thu Jun 14 16:41:20 CEST 2018
    
    
  
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Jun 12 13:10:43 2018 +0200| [81d9b7eca2cbe1e50a49b0aec6118af5a16ffff6] | committer: Steve Lhomme
mux:asf: the i_preroll_time is not an mtime_t
It's a number of milliseconds
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=81d9b7eca2cbe1e50a49b0aec6118af5a16ffff6
---
 modules/mux/asf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/mux/asf.c b/modules/mux/asf.c
index 421ee53bb0..fc7c5a80cd 100644
--- a/modules/mux/asf.c
+++ b/modules/mux/asf.c
@@ -137,7 +137,7 @@ typedef struct
     int64_t         i_packet_count;
     mtime_t         i_dts_first;
     mtime_t         i_dts_last;
-    mtime_t         i_preroll_time;
+    int64_t         i_preroll_time; /* in milliseconds */
     int64_t         i_bitrate;
     int64_t         i_bitrate_override;
 
    
    
More information about the vlc-commits
mailing list