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 -- Input: with procedure Read(buf: out Buffer); -- Output: with procedure Write(buf: in Buffer); package BZip2 is
check_CRC: Boolean;