summaryrefslogtreecommitdiff
path: root/libavformat/movenc.h
diff options
context:
space:
mode:
authorDavid Murmann <david@btf.de>2016-06-22 15:27:07 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-06-25 14:38:14 +0200
commit0296b4b8d899ee720a812f8018ff9bba216c8c6d (patch)
tree62fc9da946e45b2a871884796f0b5be625af4143 /libavformat/movenc.h
parentdfd0c0f981c58d913f1a7e355b6bfa49ed1d5f46 (diff)
avformat/movenc: add option to use keys/mdta atoms for metadata
Add -movflags use_metadata_tags to the mov muxer. This will cause the muxer to write all metadata to the file in the keys and mtda atoms. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/movenc.h')
-rw-r--r--libavformat/movenc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/movenc.h b/libavformat/movenc.h
index c4fded89bb..6e9f5ace72 100644
--- a/libavformat/movenc.h
+++ b/libavformat/movenc.h
@@ -234,6 +234,7 @@ typedef struct MOVMuxContext {
#define FF_MOV_FLAG_GLOBAL_SIDX (1 << 14)
#define FF_MOV_FLAG_WRITE_COLR (1 << 15)
#define FF_MOV_FLAG_WRITE_GAMA (1 << 16)
+#define FF_MOV_FLAG_USE_MDTA (1 << 17)
int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt);