mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 03:15:00 -06:00
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:
@@ -62,9 +62,12 @@ License:
|
|||||||
Zstandard library is provided as open source software using the BSD license.
|
Zstandard library is provided as open source software using the BSD license.
|
||||||
|
|
||||||
7-Zip Container Header:
|
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 1
|
Byte _ver_major; // currently 1
|
||||||
Byte _ver_minor; // currently 1
|
Byte _ver_minor; // currently 2
|
||||||
Byte _level; // currently 1..22
|
Byte _level; // currently 1..22
|
||||||
Byte _reserved[2];
|
Byte _reserved[2];
|
||||||
```
|
```
|
||||||
@@ -116,10 +119,13 @@ License:
|
|||||||
The Brotli library is provided as open source software using the MIT license.
|
The Brotli library is provided as open source software using the MIT license.
|
||||||
|
|
||||||
7-Zip Container Header (3 bytes):
|
7-Zip Container Header (3 bytes):
|
||||||
|
|
||||||
|
This header is for informational purposes only. It's not mandatory for
|
||||||
|
decompressing the data.
|
||||||
``` C
|
``` C
|
||||||
Byte _ver_major; // currently 0
|
Byte _ver_major; // currently 0
|
||||||
Byte _ver_minor; // currently 6
|
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
|
- this header holds some information about the version, which was
|
||||||
used for creating that 7-Zip container data
|
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.
|
LZ4 library is provided as open source software using the BSD license.
|
||||||
|
|
||||||
7-Zip Container Header:
|
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 1
|
Byte _ver_major; // currently 1
|
||||||
Byte _ver_minor; // currently 7
|
Byte _ver_minor; // currently 7
|
||||||
@@ -206,6 +215,9 @@ License:
|
|||||||
LZ5 library is provided as open source software using the BSD license.
|
LZ5 library is provided as open source software using the BSD license.
|
||||||
|
|
||||||
7-Zip Container Header:
|
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 1
|
Byte _ver_major; // currently 1
|
||||||
Byte _ver_minor; // currently 5
|
Byte _ver_minor; // currently 5
|
||||||
@@ -252,6 +264,10 @@ License:
|
|||||||
Lizard library is provided as open source software using the BSD license.
|
Lizard library is provided as open source software using the BSD license.
|
||||||
|
|
||||||
7-Zip Container Header:
|
7-Zip Container Header:
|
||||||
|
|
||||||
|
This header is for informational purposes only. It's not mandatory for
|
||||||
|
decompressing the data.
|
||||||
|
``` C
|
||||||
``` C
|
``` C
|
||||||
Byte _ver_major; // currently 2
|
Byte _ver_major; // currently 2
|
||||||
Byte _ver_minor; // currently 0
|
Byte _ver_minor; // currently 0
|
||||||
|
|||||||
Reference in New Issue
Block a user