summaryrefslogtreecommitdiff
path: root/libavformat/movenc.h
diff options
context:
space:
mode:
authorMichael Bradshaw <mjbshaw@google.com>2020-03-27 17:19:02 -0600
committerMichael Bradshaw <mjbshaw@google.com>2020-04-01 09:44:18 -0600
commit5a0575e32c62765549675833a0e523769955b616 (patch)
treec2d11b970ac3e1b1884be5fa57573caf691eb27f /libavformat/movenc.h
parent00ce1ec6a5d301b4075e2e7e5c9ea3b37c9c4be5 (diff)
avformat/movenc: add write_clli flag to write clli atom
The clli atom isn't in ISO/IEC 14496-12:2015 so the flag is marked as experimental and the clli atom is not written by default. The clli atom is already parsed by FFmpeg in mov.c. Signed-off-by: Michael Bradshaw <mjbshaw@google.com>
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 997b2d61c0..a7a0841f55 100644
--- a/libavformat/movenc.h
+++ b/libavformat/movenc.h
@@ -261,6 +261,7 @@ typedef struct MOVMuxContext {
#define FF_MOV_FLAG_SKIP_SIDX (1 << 21)
#define FF_MOV_FLAG_CMAF (1 << 22)
#define FF_MOV_FLAG_PREFER_ICC (1 << 23)
+#define FF_MOV_FLAG_WRITE_CLLI (1 << 24)
int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt);