diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-12-11 10:51:42 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-12-11 10:51:42 +0000 |
commit | 895bf49961b7531e0621ffef18504666ae1f839d (patch) | |
tree | 5d246f287e0b972ac50a0643f59de97af4c4c10c /libavcodec | |
parent | c1173617cee7b4a932257306a546a741450b7765 (diff) | |
download | ffmpeg-895bf49961b7531e0621ffef18504666ae1f839d.tar.gz |
Improve option description.
Originally committed as revision 7276 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-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 b4132d176d..e33291683b 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -556,7 +556,7 @@ static const AVOption options[]={ {"p_mask", "inter masking", OFFSET(p_masking), FF_OPT_TYPE_FLOAT, 0, -FLT_MAX, FLT_MAX, V|E}, {"dark_mask", "compresses dark areas stronger than medium ones", OFFSET(dark_masking), FF_OPT_TYPE_FLOAT, 0, -FLT_MAX, FLT_MAX, V|E}, {"unused", NULL, OFFSET(unused), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX}, -{"idct", "use inverse DCT", OFFSET(idct_algo), FF_OPT_TYPE_INT, DEFAULT, 0, INT_MAX, V|E|D, "idct"}, +{"idct", "select IDCT implementation", OFFSET(idct_algo), FF_OPT_TYPE_INT, DEFAULT, 0, INT_MAX, V|E|D, "idct"}, {"auto", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_AUTO, INT_MIN, INT_MAX, V|E|D, "idct"}, {"int", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_INT, INT_MIN, INT_MAX, V|E|D, "idct"}, {"simple", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLE, INT_MIN, INT_MAX, V|E|D, "idct"}, |