summaryrefslogtreecommitdiffstats
path: root/hostTools/lzma/decompress/7zlzma.c
blob: f45d6c2276affe242c849d987216e3258f086146 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "7z.h"

#ifdef _HOST_TOOL
#include "stdio.h"
#endif

#include "LZMADecoder.h"


static LzmaDecoder   cc;
ISequentialInStream  in_stream;
ISequentialOutStream out_stream;
int decompress_lzma_7z( unsigned char* in_data, 
                        unsigned in_size, 
                        unsigned char* out_data, 
                        unsigned out_size) {
//		LzmaDecoder cc;
        int RC;
	UINT64 in_size_l  = in_size;
	UINT64 out_size_l = out_size;


        InStreamInit(in_data, in_size);

	OutStreamInit((char *)out_data, out_size);

        LzmaDecoderConstructor(&cc);

        if ((RC = LzmaDecoderReadCoderProperties(&cc)) != S_OK)
        {
		return RC;
        }

	if (LzmaDecoderCode(&cc, &in_size_l, &out_size_l) != S_OK)
        {
		return -2;
        }

	if (out_stream.size != out_size)
        {
		return -3;
        }

        if ( out_stream.overflow )
        {
            return -4;
        }

	return 0;
}

//BRCM modification
#ifdef __KERNEL__
EXPORT_SYMBOL(decompress_lzma_7z);
#endif