blob: 7ccffafb147f7f5ea8fe87a2ebbea29d6cd89ac3 (
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
58
|
unit zwrapper;
interface
function ZDecompressBuf(const inBuffer: Pointer; inSize: Integer; out outBuffer: Pointer; out outSize: Integer; outEstimate: Integer): Integer;
implementation
uses zlib;
function ZDecompressBuf(const inBuffer: Pointer; inSize: Integer; out outBuffer: Pointer; out outSize: Integer; outEstimate: Integer): Integer;
var
zstream : TZStreamRec;
delta : Integer;
begin
FillChar(zstream, SizeOf(TZStreamRec), 0);
delta := (inSize + 255) and not 255;
if outEstimate = 0 then outSize := delta
else outSize := outEstimate;
Result := Z_OK;
GetMem(outBuffer, outSize);
try
zstream.next_in := inBuffer;
zstream.avail_in := inSize;
zstream.next_out := outBuffer;
zstream.avail_out := outSize;
Result := InflateInit(zstream);
if Result < 0 then Exit;
try
Result := inflate(zstream, Z_NO_FLUSH);
if Result < 0 then Exit;
while (Result <> Z_STREAM_END) do begin
Inc(outSize, delta);
ReallocMem(outBuffer, outSize);
zstream.next_out := {$IFDEF FPC}PBytef{$ENDIF}(pByte(outBuffer) + zstream.total_out);
zstream.avail_out := delta;
Result := inflate(zstream, Z_NO_FLUSH);
if Result < 0 then Exit;
end;
finally
inflateEnd(zstream);
end;
ReallocMem(outBuffer, zstream.total_out);
outSize := zstream.total_out;
finally
if Result < 0 then FreeMem(outBuffer);
end;
end;
end.
|