diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-06-05 12:32:19 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-06-07 22:13:59 +0200 |
commit | d9b0d75c56b07839976734e67507255a39e31e1c (patch) | |
tree | 237b1b8307c659b515b2a8120cf1448eeedb2c7e /libavutil/opt.h | |
parent | 9f7b014ad32fd87efcada0297d83546decb48fe7 (diff) | |
download | ffmpeg-d9b0d75c56b07839976734e67507255a39e31e1c.tar.gz |
opt: add AV_OPT_TYPE_PIXEL_FMT.
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 dc0dfa791e..b947814768 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -226,6 +226,7 @@ enum AVOptionType{ AV_OPT_TYPE_BINARY, ///< offset must point to a pointer immediately followed by an int for the length AV_OPT_TYPE_CONST = 128, AV_OPT_TYPE_IMAGE_SIZE = MKBETAG('S','I','Z','E'), ///< offset must point to two consecutive integers + AV_OPT_TYPE_PIXEL_FMT = MKBETAG('P','F','M','T'), #if FF_API_OLD_AVOPTIONS FF_OPT_TYPE_FLAGS = 0, FF_OPT_TYPE_INT, |