aboutsummaryrefslogtreecommitdiff
path: root/include/erofs/decompress.h
blob: 0d5548327b0267c50c26f0c0046fd25d31f763f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* SPDX-License-Identifier: GPL-2.0+ OR Apache-2.0 */
/*
 * Copyright (C), 2008-2020, OPPO Mobile Comm Corp., Ltd.
 * Created by Huang Jianan <huangjianan@oppo.com>
 */
#ifndef __EROFS_DECOMPRESS_H
#define __EROFS_DECOMPRESS_H

#ifdef __cplusplus
extern "C"
{
#endif

#include "internal.h"

struct z_erofs_decompress_req {
	struct erofs_sb_info *sbi;
	char *in, *out;

	/*
	 * initial decompressed bytes that need to be skipped
	 * when finally copying to output buffer
	 */
	unsigned int decodedskip;
	unsigned int inputsize, decodedlength;

	/* cut point of interlaced uncompressed data */
	unsigned int interlaced_offset;

	/* indicate the algorithm will be used for decompression */
	unsigned int alg;
	bool partial_decoding;
};

int z_erofs_decompress(struct z_erofs_decompress_req *rq);

#ifdef __cplusplus
}
#endif

#endif