Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Montilla <melkor@odyssey.com.uy>2017-09-29 00:46:57 +0300
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-09-29 00:46:57 +0300
commit1015982f45d832ee926a81460121673a97292333 (patch)
tree1c993bd1705d09a81a51a33e5d71c2240e7f9e74 /libavformat/isom.h
parent05dfa21d47f35f394938653abcab8b3baa3bc999 (diff)
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.h2
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;