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
6/*
7 * Author: Lasse Collin
8 *
9 * This file has been put into the public domain.
10 * You can do whatever you want with this file.
11 *
12 * See ../lzma.h for information about liblzma as a whole.
13 */
14
15#ifndef LZMA_H_INTERNAL
16# error Never include this file directly. Use <lzma.h> instead.
17#endif
18
19
25#define LZMA_FILTER_DELTA LZMA_VLI_C(0x03)
26
27
38
39
45typedef struct {
48
59 uint32_t dist;
60# define LZMA_DELTA_DIST_MIN 1
61# define LZMA_DELTA_DIST_MAX 256
62
63 /*
64 * Reserved space to allow possible future extensions without
65 * breaking the ABI. You should not touch these, because the names
66 * of these variables may change. These are and will never be used
67 * when type is LZMA_DELTA_TYPE_BYTE, so it is safe to leave these
68 * uninitialized.
69 */
70 uint32_t reserved_int1;
71 uint32_t reserved_int2;
72 uint32_t reserved_int3;
73 uint32_t reserved_int4;
74 void *reserved_ptr1;
75 void *reserved_ptr2;
76
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