]> git.sesse.net Git - ffmpeg/commitdiff
libx264: fix help text for slice-max-size option.
authorAnton Khirnov <anton@khirnov.net>
Mon, 12 Mar 2012 16:09:22 +0000 (17:09 +0100)
committerAnton Khirnov <anton@khirnov.net>
Tue, 13 Mar 2012 11:20:34 +0000 (12:20 +0100)
CC: libav-stable@libav.org
libavcodec/libx264.c

index abce6a858de2cf0d35c9a3b8c260c5ab307df9d6..a3b22aea48285f70013a7a55f3e5b2dec7b4cbfe 100644 (file)
@@ -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 },
 };