diff options
author | Jacob Trimble <modmaker@google.com> | 2017-12-06 16:17:54 -0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-04-21 00:45:31 +0200 |
commit | e5ba5fab493bd2edb24da47940626b024ebd0371 (patch) | |
tree | 86bf8018583e1ae0b589efd4c4ae18daa2474a77 /libavformat/isom.h | |
parent | 7b8daa771cbdafa6775e476c65afa659cc1afaac (diff) | |
download | ffmpeg-e5ba5fab493bd2edb24da47940626b024ebd0371.tar.gz |
avformat/mov: Fix parsing of saio/siaz atoms in encrypted content.
This doesn't support saio atoms with more than one offset.
Signed-off-by: Jacob Trimble <modmaker@google.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 4245d37767..fb361125c9 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -114,6 +114,12 @@ typedef struct MOVEncryptionIndex { // settings will be used. unsigned int nb_encrypted_samples; AVEncryptionInfo **encrypted_samples; + + uint8_t* auxiliary_info_sizes; + size_t auxiliary_info_sample_count; + uint8_t auxiliary_info_default_size; + size_t* auxiliary_offsets; ///< Absolute seek position + size_t auxiliary_offsets_count; } MOVEncryptionIndex; typedef struct MOVFragmentStreamInfo { |