diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-12-17 17:41:24 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-12-17 17:41:24 +0000 |
commit | 841f39a7f3b7ea7091d33785b395606ca5150b07 (patch) | |
tree | aeb01fb1c29643dfeeeabced1b74abb31c81cdac /libavcodec/opt.h | |
parent | 3426d575bf46edc0f52d15f7e7c1d199e8688faa (diff) | |
download | ffmpeg-841f39a7f3b7ea7091d33785b395606ca5150b07.tar.gz |
Add FF_OPT_TYPE_BINARY and use it to add a cryptokey option
Originally committed as revision 11250 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/opt.h')
-rw-r--r-- | libavcodec/opt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/opt.h b/libavcodec/opt.h index 0860d16a33..284d0b0828 100644 --- a/libavcodec/opt.h +++ b/libavcodec/opt.h @@ -37,6 +37,7 @@ enum AVOptionType{ FF_OPT_TYPE_FLOAT, FF_OPT_TYPE_STRING, FF_OPT_TYPE_RATIONAL, + FF_OPT_TYPE_BINARY, ///< offset must point to a pointer immediately followed by an int for the length FF_OPT_TYPE_CONST=128, }; |