diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-05-20 13:53:19 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-05-20 18:24:20 +0200 |
commit | 2ec3e5767e7bb7f089c22f7fba7becc32eef8394 (patch) | |
tree | 2e5890eb4a459bcf8bf21efb603e7b4bde471e3c /libavutil/opt.h | |
parent | f7985f348f1eb3ec6a1670bc1accfe2c80b55148 (diff) | |
download | ffmpeg-2ec3e5767e7bb7f089c22f7fba7becc32eef8394.tar.gz |
opt: add AV_OPT_TYPE_IMAGE_SIZE.
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 436f1963ca..1b1ebe2e41 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -225,6 +225,7 @@ enum AVOptionType{ AV_OPT_TYPE_RATIONAL, 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 #if FF_API_OLD_AVOPTIONS FF_OPT_TYPE_FLAGS = 0, FF_OPT_TYPE_INT, |