[vlc-commits] mux: libmp4: fix type
Francois Cartegnie
git at videolan.org
Wed Oct 23 13:20:58 CEST 2019
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Oct 21 12:52:29 2019 +0200| [fd52f2c265d82290e1684af788966547ce03702c] | committer: Francois Cartegnie
mux: libmp4: fix type
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fd52f2c265d82290e1684af788966547ce03702c
---
modules/mux/mp4/mp4.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/mux/mp4/mp4.c b/modules/mux/mp4/mp4.c
index dc434d03bf..1807e0a48c 100644
--- a/modules/mux/mp4/mp4.c
+++ b/modules/mux/mp4/mp4.c
@@ -135,9 +135,9 @@ typedef struct
vlc_tick_t i_length_neg;
/* applies to current segment only */
- int64_t i_first_dts;
- int64_t i_last_dts;
- int64_t i_last_pts;
+ vlc_tick_t i_first_dts;
+ vlc_tick_t i_last_dts;
+ vlc_tick_t i_last_pts;
/*** mp4frag ***/
bool b_hasiframes;
More information about the vlc-commits
mailing list