diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-11-29 17:51:13 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-12-02 15:28:22 +0000 |
commit | e352b293712ff7cbde67eba3ce3f8510b037de09 (patch) | |
tree | a9ba514e45d9c614ef8eaafa1083674031a4786d /libavformat/isom.h | |
parent | 5639ed9abb58311f82cf3499b682d228290adb09 (diff) | |
download | ffmpeg-e352b293712ff7cbde67eba3ce3f8510b037de09.tar.gz |
mov: Add an option for exporting all metadata
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 0bc912a437..7e60d8c3af 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -141,6 +141,7 @@ typedef struct MOVStreamContext { } MOVStreamContext; typedef struct MOVContext { + const AVClass *class; ///< class for private options AVFormatContext *fc; int time_scale; int64_t duration; ///< duration of the longest track @@ -155,6 +156,7 @@ typedef struct MOVContext { int itunes_metadata; ///< metadata are itunes style int chapter_track; int64_t next_root_atom; ///< offset of the next root atom + int export_all; } MOVContext; int ff_mp4_read_descr_len(AVIOContext *pb); |