diff options
author | Pablo Montilla <melkor@odyssey.com.uy> | 2017-09-28 23:46:57 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-09-28 23:46:57 +0200 |
commit | 1015982f45d832ee926a81460121673a97292333 (patch) | |
tree | 1c993bd1705d09a81a51a33e5d71c2240e7f9e74 /libavformat/isom.h | |
parent | 05dfa21d47f35f394938653abcab8b3baa3bc999 (diff) | |
download | ffmpeg-1015982f45d832ee926a81460121673a97292333.tar.gz |
lavf/mov: Allow reading very large files.
The Sample count in the time-to-sample table is defined as
32-bit unsigned integer by the QT specification.
Fixes ticket #6700.
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 9aea629293..b9380e9dcc 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -52,7 +52,7 @@ struct AVAESCTR; */ typedef struct MOVStts { - int count; + unsigned int count; int duration; } MOVStts; |