summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2004-10-06 08:50:46 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2004-10-06 08:50:46 +0000
commit7fea94ce4af2c97cbfc0a279fe7a755f9185f343 (patch)
tree3a57473464a85cbe464d056ae5db963c17e19abd /libavformat/mov.c
parenta319bbac5c1b887894a4edea8bb0016161e239a2 (diff)
* fixing a few of gcc 'clean-code' warnings
Originally committed as revision 3563 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 001481e0d7..e82e2f109c 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -239,7 +239,7 @@ typedef struct MOVStreamContext {
long current_sample;
long left_in_chunk; /* how many samples before next chunk */
/* specific MPEG4 header which is added at the beginning of the stream */
- int header_len;
+ unsigned int header_len;
uint8_t *header_data;
MOV_esds_t esds;
} MOVStreamContext;