mirror of
https://github.com/intel/isa-l.git
synced 2024-12-13 17:57:08 +01:00
64143a741e
Change-Id: If55ab161623d29fa6fb08df3bc813e654918e592
19 lines
451 B
C
19 lines
451 B
C
#ifndef IGZIP_LEVEL_BUF_STRUCTS_H
|
|
#define IGZIP_LEVEL_BUF_STRUCTS_H
|
|
|
|
#include "huff_codes.h"
|
|
#include "encode_df.h"
|
|
|
|
struct level_2_buf {
|
|
struct hufftables_icf encode_tables;
|
|
uint32_t deflate_hdr_count;
|
|
uint32_t deflate_hdr_extra_bits;
|
|
uint8_t deflate_hdr[ISAL_DEF_MAX_HDR_SIZE];
|
|
uint32_t block_start_index;
|
|
uint32_t block_in_length;
|
|
struct deflate_icf *icf_buf_next;
|
|
uint64_t icf_buf_avail_out;
|
|
struct deflate_icf icf_buf_start[];
|
|
};
|
|
#endif
|