Add comments suggested by Igor Pavlov to Methods-Extern.md

- header is for informational purposes only
- fix brotli levels: 0..11 instead of 1..11
This commit is contained in:
Tino Reichardt
2017-05-22 09:02:33 +02:00
parent 48ee1afd50
commit 9cd8199124

View File

@@ -62,9 +62,12 @@ License:
Zstandard library is provided as open source software using the BSD license.
7-Zip Container Header:
This header is for informational purposes only. It's not mandatory for
decompressing the data.
``` C
Byte _ver_major; // currently 1
Byte _ver_minor; // currently 1
Byte _ver_minor; // currently 2
Byte _level; // currently 1..22
Byte _reserved[2];
```
@@ -116,10 +119,13 @@ License:
The Brotli library is provided as open source software using the MIT license.
7-Zip Container Header (3 bytes):
This header is for informational purposes only. It's not mandatory for
decompressing the data.
``` C
Byte _ver_major; // currently 0
Byte _ver_minor; // currently 6
Byte _level; // currently 1..11 (Brotli quality)
Byte _level; // currently 0..11 (Brotli quality)
```
- this header holds some information about the version, which was
used for creating that 7-Zip container data
@@ -158,6 +164,9 @@ License:
LZ4 library is provided as open source software using the BSD license.
7-Zip Container Header:
This header is for informational purposes only. It's not mandatory for
decompressing the data.
``` C
Byte _ver_major; // currently 1
Byte _ver_minor; // currently 7
@@ -206,6 +215,9 @@ License:
LZ5 library is provided as open source software using the BSD license.
7-Zip Container Header:
This header is for informational purposes only. It's not mandatory for
decompressing the data.
``` C
Byte _ver_major; // currently 1
Byte _ver_minor; // currently 5
@@ -252,6 +264,10 @@ License:
Lizard library is provided as open source software using the BSD license.
7-Zip Container Header:
This header is for informational purposes only. It's not mandatory for
decompressing the data.
``` C
``` C
Byte _ver_major; // currently 2
Byte _ver_minor; // currently 0