From 7506e117dbc2d6a7608d22c1967668e098181674 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sun, 29 Nov 2009 02:40:27 +0000 Subject: [PATCH] track time can be 64bit Originally committed as revision 20650 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 80c962259b..6877f208b1 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -59,7 +59,7 @@ typedef struct MOVIndex { int mode; int entry; long timescale; - long time; + uint64_t time; int64_t trackDuration; long sampleCount; long sampleSize;