Expand description
Raw in-memory LZMA streams.
The Stream type exported by this module is the primary type which performs
encoding/decoding of LZMA streams. Each Stream is either an encoder or
decoder and processes data in a streaming fashion.
Structs§
- Filters
- A custom chain of filters to configure an encoding stream.
- Lzma
Options - Options that can be used to configure how LZMA encoding happens.
- MtStream
Builder - Builder to create a multi-threaded stream encoder.
- Stream
- Representation of an in-memory LZMA encoding or decoding stream.
Enums§
- Action
- The
actionargument forprocess, - Check
- Possible integrity checks that can be part of a .xz stream.
- Error
- Possible error codes that can be returned from a processing operation.
- Match
Finder - Match finders
- Mode
- Compression modes
- Status
- Return value of a
processoperation.
Constants§
- CONCATENATED
- A flag passed when initializing a decoder, indicates that the stream may be multiple concatenated xz files.
- IGNORE_
CHECK - A flag passed when initializing a decoder, causes the decoder to ignore any integrity checks listed.
- TELL_
ANY_ CHECK - A flag passed when initializing a decoder, causes
processto returnStatus::GetCheckas soon as the integrity check is known. - TELL_
NO_ CHECK - A flag passed when initializing a decoder, causes
processto returnError::NoCheckif the stream being decoded has no integrity check. - TELL_
UNSUPPORTED_ CHECK - A flag passed when initializing a decoder, causes
processto returnError::UnsupportedCheckif the stream being decoded has an integrity check that cannot be verified by this build of liblzma.