Computes the CRC32 checksum for the source data buffer.
IppStatus ippsCRC32_BZ2_8u(const Ipp8u* pSrc, int srcLen, Ipp32u* pCRC32);
pSrc |
Pointer to the source data buffer. |
srcLen |
Number of elements in the source data buffer. |
pCRC32 |
Pointer to the accumulated checksum value. |
The function ippsCRC32_BZ2is declared in the ippdc.h file. This function computes the checksum for srcLen elements of the source data buffer pSrc and stores it in the pCRC32. The checksum is computed using the CRC32 direct algorithm that is specific for the bzip2 coding.
You can use this function to compute the accumulated value of the checksum for multiple buffers by specifying as an input parameter the checksum value obtained in the preceding function call.
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error if the pSrc pointer is NULL. |
ippStsSizeErr |
Indicates an error if the length of the source vector is less than or equal to 0. |
Copyright © 2000 - 2010, Intel Corporation. All rights reserved.