Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
delta.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: 0BSD */
2
9/*
10 * Author: Lasse Collin
11 */
12
13#ifndef LZMA_H_INTERNAL
14# error Never include this file directly. Use <lzma.h> instead.
15#endif
16
17
23#define LZMA_FILTER_DELTA LZMA_VLI_C(0x03)
24
25
36
37
43typedef struct {
46
57 uint32_t dist;
58
62# define LZMA_DELTA_DIST_MIN 1
63
67# define LZMA_DELTA_DIST_MAX 256
68
69 /*
70 * Reserved space to allow possible future extensions without
71 * breaking the ABI. You should not touch these, because the names
72 * of these variables may change. These are and will never be used
73 * when type is LZMA_DELTA_TYPE_BYTE, so it is safe to leave these
74 * uninitialized.
75 */
76
78 uint32_t reserved_int1;
79
81 uint32_t reserved_int2;
82
84 uint32_t reserved_int3;
85
87 uint32_t reserved_int4;
88
90 void *reserved_ptr1;
91
93 void *reserved_ptr2;
94
type
Definition test-lz4-speed.py:247
Options for the Delta filter.
Definition delta.h:45
lzma_delta_type
Type of the delta calculation.
Definition delta.h:35
@ LZMA_DELTA_TYPE_BYTE
Definition delta.h:36