diff options
author | John Stebbins <[email protected]> | 2016-08-09 08:07:22 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-08-09 08:07:22 -0700 |
commit | c258cc87bb1c6d31afb276789d45c38a7632434f (patch) | |
tree | d89696761e4bed4eea330ef9adb416c2d50928af /test/test.c | |
parent | b1bc87c331a2abbdf9379b088e0234280219fca3 (diff) |
cli: fix pad filter help
and move from "Picture Settings" to "Filters" section
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/test.c b/test/test.c index ca4669532..b7c755447 100644 --- a/test/test.c +++ b/test/test.c @@ -1461,12 +1461,6 @@ static void ShowHelp() " --crop <T:B:L:R> Set cropping values (default: autocrop)\n" " --loose-crop Always crop to a multiple of the modulus\n" " --no-loose-crop Disable preset 'loose-crop'\n" -" --pad <W:H:C:X,Y> Add borders to pad image to WxH (e.g. letterbox)\n" -" Optionally set color of pad to C (default black)\n" -" Color may be HTML color name or RGB value\n" -" Optionally set position of image in pad area\n" -" Any value may be 'auto' in which case the\n" -" default value for that field is used\n" " -Y, --maxHeight <#> Set maximum height\n" " -X, --maxWidth <#> Set maximum width\n" " --non-anamorphic Set pixel aspect ratio to 1:1\n" @@ -1563,6 +1557,12 @@ static void ShowHelp() showFilterKeys(out, HB_FILTER_ROTATE); showFilterDefault(out, HB_FILTER_ROTATE); fprintf( out, +" --pad Add borders to pad image (e.g. letterbox).\n" +" The color of pad may be set (default black).\n" +" Color may be an HTML color name or RGB value.\n" +" The position of image in pad may also be set.\n"); + showFilterKeys(out, HB_FILTER_PAD); + fprintf( out, " -g, --grayscale Grayscale encoding\n" " --no-grayscale Disable preset 'grayscale'\n" "\n" |