diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-22 15:05:27 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-22 15:05:27 +0000 |
commit | 22565f5d7e614a40c51ffc2377a01c50e2b68876 (patch) | |
tree | b7a310f9fb905d110c15ad1bdc2213883c30c7ba /libavcodec/utils.c | |
parent | cccb4c966ba9b2a9239697830e9b21d1f4293348 (diff) | |
download | ffmpeg-22565f5d7e614a40c51ffc2377a01c50e2b68876.tar.gz |
Remove the "error" OptionDef. The equally named AVOption takes over its
function.
Originally committed as revision 6322 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index aecad47bdf..90880af01c 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -686,7 +686,7 @@ static const AVOption options[]={ {"rc_init_occupancy", NULL, OFFSET(rc_initial_buffer_occupancy), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E}, {"inter_threshold", NULL, OFFSET(inter_threshold), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E}, {"flags2", NULL, OFFSET(flags2), FF_OPT_TYPE_FLAGS, CODEC_FLAG2_FASTPSKIP, INT_MIN, INT_MAX, V|A|E|D, "flags2"}, -{"error", NULL, OFFSET(error_rate), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX}, +{"error", NULL, OFFSET(error_rate), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|E}, {"antialias", NULL, OFFSET(antialias_algo), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, V|D, "aa"}, {"auto", NULL, 0, FF_OPT_TYPE_CONST, FF_AA_AUTO, INT_MIN, INT_MAX, V|D, "aa"}, {"fastint", NULL, 0, FF_OPT_TYPE_CONST, FF_AA_FASTINT, INT_MIN, INT_MAX, V|D, "aa"}, |