• Home
  • Raw
  • Download

Lines Matching refs:pPix

9 extern void DeblockLumaLt4_c (uint8_t* pPix, int32_t iStrideX, int32_t iStrideY, int32_t iAlpha, in…
11 extern void DeblockLumaEq4_c (uint8_t* pPix, int32_t iStrideX, int32_t iStrideY, int32_t iAlpha, in…
91 void anchor_DeblockingLumaNormal (uint8_t* pPix, int32_t iStrideX, int32_t iStrideY, int32_t iAlpha… in anchor_DeblockingLumaNormal() argument
106 p[m] = pPix[iStrideX * -1 * (m + 1)]; in anchor_DeblockingLumaNormal()
107 q[m] = pPix[iStrideX * m]; in anchor_DeblockingLumaNormal()
114pPix[iStrideX * -2] = WELS_CLIP3 (p[1] + WELS_CLIP3 (((p[2] + ((p[0] + q[0] + 1) >> 1) - (p[1] << … in anchor_DeblockingLumaNormal()
120pPix[iStrideX * 1] = WELS_CLIP3 (q[1] + WELS_CLIP3 (((q[2] + ((p[0] + q[0] + 1) >> 1) - (q[1] << 1… in anchor_DeblockingLumaNormal()
126 pPix[iStrideX * -1] = WELS_CLIP3 ((p[0] + iDelta), 0, 255); in anchor_DeblockingLumaNormal()
127 pPix[0] = WELS_CLIP3 ((q[0] - iDelta), 0, 255); in anchor_DeblockingLumaNormal()
131 pPix += iStrideY; in anchor_DeblockingLumaNormal()
135 void anchor_DeblockingLumaIntra (uint8_t* pPix, int32_t iStrideX, int32_t iStrideY, int32_t iAlpha,… in anchor_DeblockingLumaIntra() argument
143 p[m] = pPix[iStrideX * -1 * (m + 1)]; in anchor_DeblockingLumaIntra()
144 q[m] = pPix[iStrideX * m]; in anchor_DeblockingLumaIntra()
153 pPix[iStrideX * -1] = (p[2] + 2 * p[1] + 2 * p[0] + 2 * q[0] + q[1] + 4) >> 3; in anchor_DeblockingLumaIntra()
154 pPix[iStrideX * -2] = (p[2] + p[1] + p[0] + q[0] + 2) >> 2; in anchor_DeblockingLumaIntra()
155 pPix[iStrideX * -3] = (2 * p[3] + 3 * p[2] + p[1] + p[0] + q[0] + 4) >> 3; in anchor_DeblockingLumaIntra()
158 pPix[iStrideX * -1] = (2 * p[1] + p[0] + q[1] + 2) >> 2; in anchor_DeblockingLumaIntra()
164 pPix[ 0 ] = (p[1] + 2 * p[0] + 2 * q[0] + 2 * q[1] + q[2] + 4) >> 3; in anchor_DeblockingLumaIntra()
165 pPix[1 * iStrideX ] = (p[0] + q[0] + q[1] + q[2] + 2) >> 2; in anchor_DeblockingLumaIntra()
166 pPix[2 * iStrideX ] = (2 * q[3] + 3 * q[2] + q[1] + q[0] + p[0] + 4) >> 3; in anchor_DeblockingLumaIntra()
169 pPix[0 * iStrideX ] = (2 * q[1] + q[0] + p[1] + 2) >> 2; in anchor_DeblockingLumaIntra()
173 pPix += iStrideY; in anchor_DeblockingLumaIntra()