summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2022-11-17 18:08:11 -0800
committerJames Zern <jzern@google.com>2022-11-17 18:13:32 -0800
commit017cb6fa941ca380d2a0bcde430c9ced9d94c927 (patch)
tree2e1973ded001c050e7899b25bad169597c4e1f68
parentfad0ece7edec90dbead3cfbe19f2bc9d77a410e2 (diff)
downloadlibwebp-017cb6fa941ca380d2a0bcde430c9ced9d94c927.tar.gz
webp-container-spec,cosmetics: normalize range syntax
this makes the syntax in this document consistent with webp-lossless-bitstream-spec.txt [N-M] -> [N..M] Bug: webp:448 Change-Id: Iebf39eefb7d3c081a3d10e2804ee215c3aed6b79
-rw-r--r--doc/webp-container-spec.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/webp-container-spec.txt b/doc/webp-container-spec.txt
index 38a3e2ce..1b3dabd4 100644
--- a/doc/webp-container-spec.txt
+++ b/doc/webp-container-spec.txt
@@ -589,8 +589,8 @@ where `clip(v)` is equal to:
* v otherwise
The final value is derived by adding the decompressed value `X` to the
-predictor and using modulo-256 arithmetic to wrap the \[256-511\] range
-into the \[0-255\] one:
+predictor and using modulo-256 arithmetic to wrap the \[256..511\] range
+into the \[0..255\] one:
`alpha = (predictor + X) % 256`