This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avformat/thp: fix variable types to avoid overflows
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer
11 years ago
parent
b73900b8a6
commit
2b1056e4e2
1 changed files
with
7 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-7
libavformat/thp.c
+ 7
- 7
libavformat/thp.c
View File
@@ -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
Loading…
Cancel
Save