mirror of
https://github.com/intel/isa-l.git
synced 2025-03-03 12:58:01 +01:00
igzip: Fix missing argument in base aliases
Fix missing argument in decode_huffman_code_block_stateless base alias that causes runtime issues for some architectures. Change-Id: I84c34bf2635dad2fca6235bd4fe0a5bc78dfbbe6 Signed-off-by: Roy Oursler <roy.j.oursler@intel.com>
This commit is contained in:
parent
8a2be4b693
commit
b4dfd61d06
@ -44,7 +44,7 @@ struct deflate_icf *encode_deflate_icf_base(struct deflate_icf *next_in,
|
|||||||
struct deflate_icf *end_in, struct BitBuf2 *bb,
|
struct deflate_icf *end_in, struct BitBuf2 *bb,
|
||||||
struct hufftables_icf *hufftables);
|
struct hufftables_icf *hufftables);
|
||||||
uint32_t adler32_base(uint32_t init, const unsigned char *buf, uint64_t len);
|
uint32_t adler32_base(uint32_t init, const unsigned char *buf, uint64_t len);
|
||||||
int decode_huffman_code_block_stateless_base(struct inflate_state *s);
|
int decode_huffman_code_block_stateless_base(struct inflate_state *s, uint8_t * start_out);
|
||||||
|
|
||||||
extern void isal_deflate_hash_base(uint16_t *, uint32_t, uint32_t, uint8_t *, uint32_t);
|
extern void isal_deflate_hash_base(uint16_t *, uint32_t, uint32_t, uint8_t *, uint32_t);
|
||||||
|
|
||||||
@ -111,9 +111,9 @@ uint32_t isal_adler32(uint32_t init, const unsigned char *buf, uint64_t len)
|
|||||||
return adler32_base(init, buf, len);
|
return adler32_base(init, buf, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
int decode_huffman_code_block_stateless(struct inflate_state *s)
|
int decode_huffman_code_block_stateless(struct inflate_state *s, uint8_t * start_out)
|
||||||
{
|
{
|
||||||
return decode_huffman_code_block_stateless_base(s);
|
return decode_huffman_code_block_stateless_base(s, start_out);
|
||||||
}
|
}
|
||||||
|
|
||||||
void isal_deflate_hash_lvl0(uint16_t * hash_table, uint32_t hash_mask,
|
void isal_deflate_hash_lvl0(uint16_t * hash_table, uint32_t hash_mask,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user