Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
44d3fea5
Commit
44d3fea5
authored
Jan 24, 2007
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make some fields unsigned
Originally committed as revision 7680 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
dfcf8d57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
mov.c
libavformat/mov.c
+8
-8
No files found.
libavformat/mov.c
View file @
44d3fea5
...
...
@@ -241,21 +241,21 @@ struct MOVParseTableEntry;
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment