summaryrefslogtreecommitdiff
path: root/libavformat/movenc.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2019-11-25 16:19:03 -0300
committerJames Almer <jamrial@gmail.com>2020-01-15 23:34:21 -0300
commitcc929cee76e59f01494208e9fbbf4050b7bc6089 (patch)
tree3f7a4f12e2a5835c7e9a61df1fab39d7bc711237 /libavformat/movenc.h
parentf63407a9863a0168cddfafebb6b8a4ba85716bbe (diff)
avformat/movenc: add a flag to enable CMAF compatability
Sets some required constrains and reports compatability with the relevant compatible brand. Signed-off-by: James Almer <jamrial@gmail.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 a3c6467c67..6ac106c653 100644
--- a/libavformat/movenc.h
+++ b/libavformat/movenc.h
@@ -259,6 +259,7 @@ typedef struct MOVMuxContext {
#define FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS (1 << 19)
#define FF_MOV_FLAG_FRAG_EVERY_FRAME (1 << 20)
#define FF_MOV_FLAG_SKIP_SIDX (1 << 21)
+#define FF_MOV_FLAG_CMAF (1 << 22)
int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt);