[vlc-commits] packetizer:mpeg4video: internal times are not mtime_t
Steve Lhomme
git at videolan.org
Thu Jun 14 16:41:22 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jun 13 11:30:20 2018 +0200| [3dd2140c7e0c2189b5d30b9092a99907bd9dab3c] | committer: Steve Lhomme
packetizer:mpeg4video: internal times are not mtime_t
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3dd2140c7e0c2189b5d30b9092a99907bd9dab3c
---
modules/packetizer/mpeg4video.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/packetizer/mpeg4video.c b/modules/packetizer/mpeg4video.c
index c95e9132f8..63406e569d 100644
--- a/modules/packetizer/mpeg4video.c
+++ b/modules/packetizer/mpeg4video.c
@@ -73,10 +73,10 @@ typedef struct
mtime_t i_interpolated_pts;
mtime_t i_interpolated_dts;
mtime_t i_last_ref_pts;
- mtime_t i_last_time_ref;
- mtime_t i_time_ref;
- mtime_t i_last_time;
- mtime_t i_last_timeincr;
+ int64_t i_last_time_ref;
+ int64_t i_time_ref;
+ int64_t i_last_time;
+ int64_t i_last_timeincr;
unsigned int i_flags;
More information about the vlc-commits
mailing list