diff options
Diffstat (limited to 'DOC/lzma.txt')
-rw-r--r-- | DOC/lzma.txt | 43 |
1 files changed, 30 insertions, 13 deletions
diff --git a/DOC/lzma.txt b/DOC/lzma.txt index a65988f..142feb1 100644 --- a/DOC/lzma.txt +++ b/DOC/lzma.txt | |||
@@ -1,6 +1,6 @@ | |||
1 | LZMA compression | 1 | LZMA compression |
2 | ---------------- | 2 | ---------------- |
3 | Version: 9.35 | 3 | Version: 23.01 |
4 | 4 | ||
5 | This file describes LZMA encoding and decoding functions written in C language. | 5 | This file describes LZMA encoding and decoding functions written in C language. |
6 | 6 | ||
@@ -169,12 +169,14 @@ How To compress data | |||
169 | Compile files: | 169 | Compile files: |
170 | 7zTypes.h | 170 | 7zTypes.h |
171 | Threads.h | 171 | Threads.h |
172 | Threads.c | ||
172 | LzmaEnc.h | 173 | LzmaEnc.h |
173 | LzmaEnc.c | 174 | LzmaEnc.c |
174 | LzFind.h | 175 | LzFind.h |
175 | LzFind.c | 176 | LzFind.c |
176 | LzFindMt.h | 177 | LzFindMt.h |
177 | LzFindMt.c | 178 | LzFindMt.c |
179 | LzFindOpt.c | ||
178 | LzHash.h | 180 | LzHash.h |
179 | 181 | ||
180 | Memory Requirements: | 182 | Memory Requirements: |
@@ -283,17 +285,26 @@ Return code: | |||
283 | Defines | 285 | Defines |
284 | ------- | 286 | ------- |
285 | 287 | ||
286 | _LZMA_SIZE_OPT - Enable some optimizations in LZMA Decoder to get smaller executable code. | 288 | Z7_LZMA_SIZE_OPT - Enable some code size optimizations in LZMA Decoder to get smaller executable code. |
287 | 289 | ||
288 | _LZMA_PROB32 - It can increase the speed on some 32-bit CPUs, but memory usage for | 290 | Z7_LZMA_PROB32 - It can increase the speed on some 32-bit CPUs, but memory usage for |
289 | some structures will be doubled in that case. | 291 | some structures will be doubled in that case. |
290 | 292 | ||
291 | _LZMA_UINT32_IS_ULONG - Define it if int is 16-bit on your compiler and long is 32-bit. | 293 | Z7_DECL_Int32_AS_long - Define it if int is 16-bit on your compiler and long is 32-bit. |
292 | 294 | ||
293 | _LZMA_NO_SYSTEM_SIZE_T - Define it if you don't want to use size_t type. | 295 | Z7_DECL_SizeT_AS_unsigned_int - Define it if you don't want to use size_t type. |
294 | 296 | ||
295 | 297 | ||
296 | _7ZIP_PPMD_SUPPPORT - Define it if you don't want to support PPMD method in AMSI-C .7z decoder. | 298 | Defines for 7z decoder written in C |
299 | ----------------------------------- | ||
300 | These defines are for 7zDec.c only (the decoder in C). | ||
301 | C++ 7z decoder doesn't uses these macros. | ||
302 | |||
303 | Z7_PPMD_SUPPORT - define it if you need PPMD method support. | ||
304 | Z7_NO_METHODS_FILTERS - do not use filters (except of BCJ2 filter). | ||
305 | Z7_USE_NATIVE_BRANCH_FILTER - use filter for native ISA: | ||
306 | use x86 filter, if compiled to x86 executable, | ||
307 | use arm64 filter, if compiled to arm64 executable. | ||
297 | 308 | ||
298 | 309 | ||
299 | C++ LZMA Encoder/Decoder | 310 | C++ LZMA Encoder/Decoder |
@@ -305,20 +316,26 @@ C++ LZMA code is just wrapper over ANSI-C code. | |||
305 | 316 | ||
306 | C++ Notes | 317 | C++ Notes |
307 | ~~~~~~~~~~~~~~~~~~~~~~~~ | 318 | ~~~~~~~~~~~~~~~~~~~~~~~~ |
308 | If you use some C++ code folders in 7-Zip (for example, C++ code for .7z handling), | 319 | If you use some C++ code folders in 7-Zip (for example, C++ code for 7z archive handling), |
309 | you must check that you correctly work with "new" operator. | 320 | you must check that you correctly work with "new" operator. |
310 | 7-Zip can be compiled with MSVC 6.0 that doesn't throw "exception" from "new" operator. | 321 | 7-Zip can be compiled with MSVC 6.0 that doesn't throw "exception" from "new" operator. |
311 | So 7-Zip uses "CPP\Common\NewHandler.cpp" that redefines "new" operator: | 322 | So 7-Zip uses "CPP\Common\NewHandler.cpp" that redefines "new" operator, |
323 | if compiled by old MSVC compilers (MSVC before version VS 2010): | ||
324 | |||
312 | operator new(size_t size) | 325 | operator new(size_t size) |
313 | { | 326 | { |
314 | void *p = ::malloc(size); | 327 | void *p = ::malloc(size); |
315 | if (p == 0) | 328 | if (!p) |
316 | throw CNewException(); | 329 | throw CNewException(); |
317 | return p; | 330 | return p; |
318 | } | 331 | } |
319 | If you use MSCV that throws exception for "new" operator, you can compile without | 332 | |
320 | "NewHandler.cpp". So standard exception will be used. Actually some code of | 333 | If the compiler is VS 2010 or newer, NewHandler.cpp doesn't redefine "new" operator. |
321 | 7-Zip catches any exception in internal code and converts it to HRESULT code. | 334 | Sp if you use new compiler (VS 2010 or newer), you still can include "NewHandler.cpp" |
335 | to compilation, and it will not redefine operator new. | ||
336 | Also you can compile without "NewHandler.cpp" with new compilers. | ||
337 | If 7-zip doesn't redefine operator "new", standard exception will be used instead of CNewException. | ||
338 | Some code of 7-Zip catches any exception in internal code and converts it to HRESULT code. | ||
322 | So you don't need to catch CNewException, if you call COM interfaces of 7-Zip. | 339 | So you don't need to catch CNewException, if you call COM interfaces of 7-Zip. |
323 | 340 | ||
324 | --- | 341 | --- |