Developer Reference for Intel® Integrated Performance Primitives 2019
Initializes the LZ4 hash table.
IppStatus ippsEncodeLZ4HashTableInit_8u(Ipp8u* pHashTable, int srcLen);
IppStatus ippsEncodeLZ4DictHashTableInit_8u(Ipp8u* pHashTable, int srcLen);
ippdc.h
Headers: ippcore.h, ippvm.h, ipps.h
Libraries: ippcore.lib, ippvm.lib, ipps.lib
pHashTable |
Pointer to the LZ4 hash table. |
srcLen |
Length of the source data for compression. |
This function initializes the LZ4 hash table. Before using this function, compute the size of the LZ4 hash table using the EncodeLZ4HashTableGetSize function.
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error if the pHashTable pointer is NULL. |
ippStsSizeErr |
Indicates an error if the srcLen value is less than, or equal to zero. |