diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-01-20 17:27:09 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2016-01-21 14:32:39 +0100 |
commit | 65d29dd274a302131e2e4bc6d2b1eca4a093900c (patch) | |
tree | a7196ed90a4e1d19db8d0ee158eb4dbcbcfb69e4 /libavformat/isom.h | |
parent | 883ad2c59ceea1ced5495b5ccc83695ed4bbb94b (diff) | |
download | ffmpeg-65d29dd274a302131e2e4bc6d2b1eca4a093900c.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: Luca Barbato <lu_zero@gentoo.org>
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 d81d4358a2..aec623b95c 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -159,6 +159,7 @@ typedef struct MOVContext { int64_t next_root_atom; ///< offset of the next root atom int export_all; int export_xmp; + int enable_drefs; } MOVContext; int ff_mp4_read_descr_len(AVIOContext *pb); |