From 52e41b9ac8010da90bbe97421cca533afd6914c0 Mon Sep 17 00:00:00 2001 From: elasota <1137273+elasota@users.noreply.github.com> Date: Thu, 9 Nov 2023 12:22:27 -0500 Subject: [PATCH] Fix malformed state table --- doc/zstd_compression_format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/zstd_compression_format.md b/doc/zstd_compression_format.md index 0532a846f..b362b206d 100644 --- a/doc/zstd_compression_format.md +++ b/doc/zstd_compression_format.md @@ -1187,9 +1187,9 @@ Baseline is assigned starting from the higher states using fewer bits, increasing at each state, then resuming at the first state, each state takes its allocated width from Baseline. -| state value | 1 | 39 | 77 | 84 | 122 | | state order | 0 | 1 | 2 | 3 | 4 | | ---------------- | ----- | ----- | ------ | ---- | ------ | +| state value | 1 | 39 | 77 | 84 | 122 | | width | 32 | 32 | 32 | 16 | 16 | | `Number_of_Bits` | 5 | 5 | 5 | 4 | 4 | | range number | 2 | 4 | 6 | 0 | 1 | -- 2.47.2