changed enccoding type order : raw, rle, compressed, repeat-stats

This commit is contained in:
Yann Collet
2016-07-23 15:52:05 +02:00
parent 9d6e9492ac
commit 571a59034a
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -324,9 +324,9 @@ while the remaining 22 bits represent the (compressed) block size.
There are 4 block types :
| Value | 0 | 1 | 2 | 3 |
| ---------- | ---------- | --- | --- | ------- |
| Block Type | Compressed | Raw | RLE | EndMark |
| Value | 0 | 1 | 2 | 3 |
| ---------- | --- | --- | ---------- | ------- |
| Block Type | Raw | RLE | Compressed | EndMark |
- Compressed : this is a [Zstandard compressed block](#compressed-block-format),
detailed in another section of this specification.