13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
* file.
*/
#import "OFStream.h"
OF_ASSUME_NONNULL_BEGIN
#define OF_LHA_DECOMPRESSING_STREAM_BUFFER_SIZE 4096
OF_DIRECT_MEMBERS
@interface OFLHADecompressingStream: OFStream
{
OFStream *_stream;
uint8_t _distanceBits, _dictionaryBits;
unsigned char _buffer[OF_LHA_DECOMPRESSING_STREAM_BUFFER_SIZE];
uint32_t _bytesConsumed;
uint16_t _bufferIndex, _bufferLength;
uint8_t _byte;
uint8_t _bitIndex, _savedBitsLength;
uint16_t _savedBits;
unsigned char *_slidingWindow;
uint32_t _slidingWindowIndex, _slidingWindowMask;
|
|
|
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
* file.
*/
#import "OFStream.h"
OF_ASSUME_NONNULL_BEGIN
#define OFLHADecompressingStreamBufferSize 4096
OF_DIRECT_MEMBERS
@interface OFLHADecompressingStream: OFStream
{
OFStream *_stream;
uint8_t _distanceBits, _dictionaryBits;
unsigned char _buffer[OFLHADecompressingStreamBufferSize];
uint32_t _bytesConsumed;
uint16_t _bufferIndex, _bufferLength;
uint8_t _byte;
uint8_t _bitIndex, _savedBitsLength;
uint16_t _savedBits;
unsigned char *_slidingWindow;
uint32_t _slidingWindowIndex, _slidingWindowMask;
|