UPD: Zip - increase buffer size

(cherry picked from commit 5c0192a445)
This commit is contained in:
Alexander Koblov 2023-10-07 19:07:55 +03:00
commit 9404bdadfa

View file

@ -406,7 +406,7 @@ end;
{ -------------------------------------------------------------------------- }
procedure TAbZstdArchive.DecompressToStream(aStream: TStream);
const
BufSize = $F000;
BufSize = $40000;
var
DecompStream: TZSTDDecompressionStream;
ProxyStream: TAbProgressReadStream;