diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-05-13 12:56:09 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-05-17 11:32:53 +0000 |
commit | 3a751eab78602bb9e3c0f371486628cd47f037ed (patch) | |
tree | ba8b7b7c5f4efd4438ae608b41fdb76c3628f68b /libavutil/opt.h | |
parent | 1ec578c010e74fcd899170b3fa8e4c25c4c2c479 (diff) | |
download | ffmpeg-3a751eab78602bb9e3c0f371486628cd47f037ed.tar.gz |
lavu/opt: add AV_OPT_TYPE_COLOR
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r-- | libavutil/opt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h index 7f7b54e708..2344aa7b4d 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -232,6 +232,7 @@ enum AVOptionType{ AV_OPT_TYPE_SAMPLE_FMT = MKBETAG('S','F','M','T'), AV_OPT_TYPE_VIDEO_RATE = MKBETAG('V','R','A','T'), ///< offset must point to AVRational AV_OPT_TYPE_DURATION = MKBETAG('D','U','R',' '), + AV_OPT_TYPE_COLOR = MKBETAG('C','O','L','R'), #if FF_API_OLD_AVOPTIONS FF_OPT_TYPE_FLAGS = 0, FF_OPT_TYPE_INT, |