diff --git a/README b/README index 85019822..0e171c52 100644 --- a/README +++ b/README @@ -294,7 +294,6 @@ Options are: -nofancy ..... don't use the fancy YUV420 upscaler -nofilter .... disable in-loop filtering -dither dithering strength (0..100), default=50 - -noalphadither disable alpha plane dithering -mt .......... use multi-threading -info ........ print info -h ....... this help message diff --git a/examples/vwebp.c b/examples/vwebp.c index c56ad40e..400fb1e5 100644 --- a/examples/vwebp.c +++ b/examples/vwebp.c @@ -377,7 +377,9 @@ static void Help(void) { " -nofancy ..... don't use the fancy YUV420 upscaler\n" " -nofilter .... disable in-loop filtering\n" " -dither dithering strength (0..100), default=50\n" +#if WEBP_DECODER_ABI_VERSION > 0x0203 " -noalphadither disable alpha plane dithering\n" +#endif " -mt .......... use multi-threading\n" " -info ........ print info\n" " -h ....... this help message\n" diff --git a/man/vwebp.1 b/man/vwebp.1 index a842f6ef..525cecce 100644 --- a/man/vwebp.1 +++ b/man/vwebp.1 @@ -1,5 +1,5 @@ .\" Hey, EMACS: -*- nroff -*- -.TH VWEBP 1 "June 13, 2014" +.TH VWEBP 1 "July 23, 2014" .SH NAME vwebp \- decompress a WebP file and display it in a window .SH SYNOPSIS @@ -33,10 +33,11 @@ Disable in-loop filtering. Specify a dithering \fBstrength\fP between 0 and 100. Dithering is a post-processing effect applied to chroma components in lossy compression. It helps by smoothing gradients and avoiding banding artifacts. Default: 50. -.TP -.BI \-noalphadither -By default, quantized transparency planes are dithered during decompression, -to smooth the gradients. This flag will prevent this dithering. +.\" TODO(jzern): restore post-v0.4.1 +.\" .TP +.\" .BI \-noalphadither +.\" By default, quantized transparency planes are dithered during decompression, +.\" to smooth the gradients. This flag will prevent this dithering. .TP .B \-mt Use multi-threading for decoding, if possible.