generic input_buffer_size : Integer := 1024; output_buffer_size : Integer := 4096; type Buffer is array (Natural range <>) of Interfaces.Unsigned_8; check_CRC : Boolean; -- ^ useless if the whole bzip stream is in -- another CRC - checked stream, like a Zip archive with procedure Read (buf : out Buffer); -- Input with procedure Write (buf : Buffer); -- Output package BZip2 is
type Buffer is array (Natural range <>) of Interfaces.Unsigned_8;
check_CRC : Boolean;
procedure Read
( | buf | : out Buffer); |
procedure Write
( | buf | : Buffer); |
procedure Decompress;