Mercurial > libavformat.hg
changeset 1728:5ed25b8bf482 libavformat
make some fields unsigned
author | bcoudurier |
---|---|
date | Wed, 24 Jan 2007 10:55:07 +0000 |
parents | 0d0826c53aec |
children | 94580a2253ff |
files | mov.c |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/mov.c Wed Jan 24 10:44:24 2007 +0000 +++ b/mov.c Wed Jan 24 10:55:07 2007 +0000 @@ -241,21 +241,21 @@ typedef struct MOVStreamContext { int ffindex; /* the ffmpeg stream id */ long next_chunk; - long chunk_count; + unsigned int chunk_count; int64_t *chunk_offsets; - int stts_count; + unsigned int stts_count; Time2Sample *stts_data; - int ctts_count; + unsigned int ctts_count; Time2Sample *ctts_data; - int edit_count; /* number of 'edit' (elst atom) */ - long sample_to_chunk_sz; + unsigned int edit_count; /* number of 'edit' (elst atom) */ + unsigned int sample_to_chunk_sz; MOV_sample_to_chunk_tbl *sample_to_chunk; int sample_to_ctime_index; int sample_to_ctime_sample; - long sample_size; - long sample_count; + unsigned int sample_size; + unsigned int sample_count; long *sample_sizes; - long keyframe_count; + unsigned int keyframe_count; long *keyframes; int time_scale; int time_rate;