summaryrefslogtreecommitdiff
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-11-29 02:41:48 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-11-29 02:41:48 +0000
commit74ccc660991367abf759b83de94f06608b7dfe6e (patch)
treeeb5a89acf47cefc7407e4c18869d34eceb774e21 /libavformat/movenc.c
parent7506e117dbc2d6a7608d22c1967668e098181674 (diff)
change track timescale to unsigned int, fix warning
Originally committed as revision 20651 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r--libavformat/movenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 6877f208b1..7ce2adc7ad 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -58,7 +58,7 @@ typedef struct MOVIentry {
typedef struct MOVIndex {
int mode;
int entry;
- long timescale;
+ unsigned timescale;
uint64_t time;
int64_t trackDuration;
long sampleCount;