summaryrefslogtreecommitdiff
path: root/libavformat/isom.h
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2018-07-24 22:32:59 +0200
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2018-07-25 20:06:04 +0200
commitfa35ab80f31e269bd607044db2706b8b99e4ef5a (patch)
treeff3d6757ada597e458fa82706f27e88c43abf8fd /libavformat/isom.h
parentc51e0cd6edbe9c5e27d7ab4be7d8063210b7d2a4 (diff)
lavf/isom: Make auxiliary_offsets consistently uint64_t.
Fixes a compilation warning if size_t != uint64_t: libavformat/mov.c: In function ‘mov_read_saio’: libavformat/mov.c:6207:45: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types] encryption_index->auxiliary_offsets = auxiliary_offsets; ^
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 fb361125c9..51abea52de 100644
--- a/libavformat/isom.h
+++ b/libavformat/isom.h
@@ -118,7 +118,7 @@ typedef struct MOVEncryptionIndex {
uint8_t* auxiliary_info_sizes;
size_t auxiliary_info_sample_count;
uint8_t auxiliary_info_default_size;
- size_t* auxiliary_offsets; ///< Absolute seek position
+ uint64_t* auxiliary_offsets; ///< Absolute seek position
size_t auxiliary_offsets_count;
} MOVEncryptionIndex;