From 1015982f45d832ee926a81460121673a97292333 Mon Sep 17 00:00:00 2001 From: Pablo Montilla Date: Thu, 28 Sep 2017 23:46:57 +0200 Subject: 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. --- libavformat/isom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/isom.h') 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; -- cgit v1.2.3