diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-03-12 17:09:22 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-03-13 12:20:34 +0100 |
commit | 9d5c131ecec75fcfb1b4b56f74f2b2756bf0027a (patch) | |
tree | 021854862182ec6c51356a6f1fe9d789c4d02cfb /libavcodec | |
parent | 499ad54d982307a31ef70f6256a9ffccff0057e5 (diff) | |
download | ffmpeg-9d5c131ecec75fcfb1b4b56f74f2b2756bf0027a.tar.gz |
libx264: fix help text for slice-max-size option.
CC: libav-stable@libav.org
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/libx264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index abce6a858d..a3b22aea48 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -506,7 +506,7 @@ static const AVOption options[] = { { "spatial", NULL, 0, AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_SPATIAL }, 0, 0, VE, "direct-pred" }, { "temporal", NULL, 0, AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" }, { "auto", NULL, 0, AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_AUTO }, 0, 0, VE, "direct-pred" }, - { "slice-max-size","Constant quantization parameter rate control method",OFFSET(slice_max_size), AV_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE }, + { "slice-max-size","Limit the size of each slice in bytes", OFFSET(slice_max_size),AV_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE }, { NULL }, }; |