diff options
author | James Almer <jamrial@gmail.com> | 2019-11-25 16:19:03 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-01-15 23:34:21 -0300 |
commit | cc929cee76e59f01494208e9fbbf4050b7bc6089 (patch) | |
tree | 3f7a4f12e2a5835c7e9a61df1fab39d7bc711237 /libavformat/movenc.h | |
parent | f63407a9863a0168cddfafebb6b8a4ba85716bbe (diff) | |
download | ffmpeg-cc929cee76e59f01494208e9fbbf4050b7bc6089.tar.gz |
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.h | 1 |
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); |