diff options
author | Kevin Wheatley <kevin.j.wheatley@gmail.com> | 2015-01-26 16:39:24 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-26 17:49:50 +0100 |
commit | 7b6f4191763a5ffde02fa198101aabc3ddb5bf61 (patch) | |
tree | 8b9bc8e1e8428233cb0206672a9add7065db2438 /libavformat/movenc.h | |
parent | b8f3b0703c32b1502ad25af8bb1168c74a1fe2a3 (diff) | |
download | ffmpeg-7b6f4191763a5ffde02fa198101aabc3ddb5bf61.tar.gz |
avformat/movenc: Add simplistic 'colr' tag writing support to mov container
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 79027e69f3..3a729374da 100644 --- a/libavformat/movenc.h +++ b/libavformat/movenc.h @@ -201,6 +201,7 @@ typedef struct MOVMuxContext { #define FF_MOV_FLAG_DASH (1 << 11) #define FF_MOV_FLAG_FRAG_DISCONT (1 << 12) #define FF_MOV_FLAG_DELAY_MOOV (1 << 13) +#define FF_MOV_FLAG_WRITE_COLR (1 << 14) int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt); |