diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-01-15 17:03:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-20 15:41:58 +0100 |
commit | 712d962a6a29b1099cd872cfb07867175a93ac4c (patch) | |
tree | e8b25ba2e18ae8daf7241a466565b99bcfa51fa8 /libavformat/isom.h | |
parent | 868a2ed568414b80d8b083f41293c65b73bf6091 (diff) | |
download | ffmpeg-712d962a6a29b1099cd872cfb07867175a93ac4c.tar.gz |
mov: Add an option to toggle dref opening
This feature is mostly only used by NLE software, and is
both of dubious value being enabled by default, and a
possible security risk.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index e07dc0e9ca..99bc7bed00 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -227,6 +227,7 @@ typedef struct MOVContext { struct AVAES *aes_decrypt; uint8_t *decryption_key; int decryption_key_len; + int enable_drefs; } MOVContext; int ff_mp4_read_descr_len(AVIOContext *pb); |