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
2b1056e4
Commit
2b1056e4
authored
Oct 31, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/thp: fix variable types to avoid overflows
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b73900b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
thp.c
libavformat/thp.c
+7
-7
No files found.
libavformat/thp.c
View file @
2b1056e4
...
...
@@ -26,15 +26,15 @@
typedef
struct
ThpDemuxContext
{
int
version
;
int
first_frame
;
int
first_framesz
;
int
last_frame
;
unsigned
first_frame
;
unsigned
first_framesz
;
unsigned
last_frame
;
int
compoff
;
int
framecnt
;
unsigned
framecnt
;
AVRational
fps
;
int
frame
;
int
next_frame
;
int
next_framesz
;
unsigned
frame
;
int
64_t
next_frame
;
unsigned
next_framesz
;
int
video_stream_index
;
int
audio_stream_index
;
int
compcount
;
...
...
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