Splits 16-bit monochrome Composite Pixel Code.
IppStatus ippiSplitRow_TIFF_16u8u_C1(const Ipp16u* pSrc, Ipp8u pDst[2], int srcLen);
pSrc |
Pointer to the input buffer containing 16-bit monochrome Composite Pixel Code. |
srcLen |
Number of elements in the source buffer. |
pDst |
Pointer to the output buffers. |
The function ippiSplitRow_TIFF is declared in the ippj.h file. This function takes the most significant and the least significant bytes of each of srcLen elements of the input buffer pSrc, and stores them sequentially to the output buffers pointed by pDst. The pDst[0] contains only the most significant bytes, and the pDst[1] contains only the least significant bytes.
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error if pSrc or pDst pointer is NULL. |
ippStsSizeErr |
Indicates an error condition if srcLen has a negative or illegal value. |
Copyright © 2000 - 2010, Intel Corporation. All rights reserved.