From 9cd8199124ef26525e304c63ddbae826f19d3c22 Mon Sep 17 00:00:00 2001 From: Tino Reichardt Date: Mon, 22 May 2017 09:02:33 +0200 Subject: [PATCH 1/2] 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 --- DOC/Methods-Extern.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/DOC/Methods-Extern.md b/DOC/Methods-Extern.md index 82449d05..d604485f 100644 --- a/DOC/Methods-Extern.md +++ b/DOC/Methods-Extern.md @@ -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 From c88febfa56e2f4ef3e1e1571f2120064ed1ff3c3 Mon Sep 17 00:00:00 2001 From: Tino Reichardt Date: Thu, 25 May 2017 10:59:28 +0200 Subject: [PATCH 2/2] fix: Methods-Extern.md had a double ``` C line --- DOC/Methods-Extern.md | 1 - 1 file changed, 1 deletion(-) diff --git a/DOC/Methods-Extern.md b/DOC/Methods-Extern.md index d604485f..d31e4a46 100644 --- a/DOC/Methods-Extern.md +++ b/DOC/Methods-Extern.md @@ -267,7 +267,6 @@ Lizard library is provided as open source software using the BSD license. 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