Fixed argument check of sse2_RGBToRGB_16s8u_P3AC4R
This commit is contained in:
parent
43a4903e3d
commit
6366868222
@ -1169,7 +1169,7 @@ static pstatus_t sse2_RGBToRGB_16s8u_P3AC4R(
|
||||
UINT32 DstFormat,
|
||||
const prim_size_t* roi)
|
||||
{
|
||||
if (((ULONG_PTR)pSrc[0] & 0x0f) || ((ULONG_PTR)pSrc[0] & 0x0f) || ((ULONG_PTR)pSrc[0] & 0x0f) ||
|
||||
if (((ULONG_PTR)pSrc[0] & 0x0f) || ((ULONG_PTR)pSrc[1] & 0x0f) || ((ULONG_PTR)pSrc[2] & 0x0f) ||
|
||||
(srcStep & 0x0f) || ((ULONG_PTR)pDst & 0x0f) || (dstStep & 0x0f))
|
||||
return generic->RGBToRGB_16s8u_P3AC4R(pSrc, srcStep, pDst, dstStep, DstFormat, roi);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user