Lines Matching refs:iStrideX
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…
12 extern void DeblockChromaLt4_c (uint8_t* pPixCb, uint8_t* pPixCr, int32_t iStrideX, int32_t iStride…
14 extern void DeblockChromaEq4_c (uint8_t* pPixCb, uint8_t* pPixCr, int32_t iStrideX, int32_t iStride…
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()
114 …pPix[iStrideX * -2] = WELS_CLIP3 (p[1] + WELS_CLIP3 (((p[2] + ((p[0] + q[0] + 1) >> 1) - (p[1] << … in anchor_DeblockingLumaNormal()
120 …pPix[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()
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()
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()
177 void anchor_DeblockingChromaNormal (uint8_t* pPixCb, uint8_t* pPixCr, int32_t iStrideX, int32_t iSt… in anchor_DeblockingChromaNormal() argument
190 p[m] = pPixCb[iStrideX * -1 * (m + 1)]; in anchor_DeblockingChromaNormal()
191 q[m] = pPixCb[iStrideX * m]; in anchor_DeblockingChromaNormal()
198 pPixCb[iStrideX * -1] = WELS_CLIP3 ((p[0] + iDelta), 0, 255); in anchor_DeblockingChromaNormal()
199 pPixCb[iStrideX * 0 ] = WELS_CLIP3 ((q[0] - iDelta), 0, 255); in anchor_DeblockingChromaNormal()
205 p[m] = pPixCr[iStrideX * -1 * (m + 1)]; in anchor_DeblockingChromaNormal()
206 q[m] = pPixCr[iStrideX * m]; in anchor_DeblockingChromaNormal()
213 pPixCr[iStrideX * -1] = WELS_CLIP3 ((p[0] + iDelta), 0, 255); in anchor_DeblockingChromaNormal()
214 pPixCr[iStrideX * 0 ] = WELS_CLIP3 ((q[0] - iDelta), 0, 255); in anchor_DeblockingChromaNormal()
220 void anchor_DeblockingChromaIntra (uint8_t* pPixCb, uint8_t* pPixCr, int32_t iStrideX, int32_t iStr… in anchor_DeblockingChromaIntra() argument
229 p[m] = pPixCb[iStrideX * -1 * (m + 1)]; in anchor_DeblockingChromaIntra()
230 q[m] = pPixCb[iStrideX * m]; in anchor_DeblockingChromaIntra()
236 pPixCb[iStrideX * -1] = WELS_CLIP3 ((2 * p[1] + p[0] + q[1] + 2) >> 2, 0, 255); in anchor_DeblockingChromaIntra()
237 pPixCb[iStrideX * 0 ] = WELS_CLIP3 ((2 * q[1] + q[0] + p[1] + 2) >> 2, 0, 255); in anchor_DeblockingChromaIntra()
243 p[m] = pPixCr[iStrideX * -1 * (m + 1)]; in anchor_DeblockingChromaIntra()
244 q[m] = pPixCr[iStrideX * m]; in anchor_DeblockingChromaIntra()
250 pPixCr[iStrideX * -1] = WELS_CLIP3 ((2 * p[1] + p[0] + q[1] + 2) >> 2, 0, 255); in anchor_DeblockingChromaIntra()
251 pPixCr[iStrideX * 0 ] = WELS_CLIP3 ((2 * q[1] + q[0] + p[1] + 2) >> 2, 0, 255); in anchor_DeblockingChromaIntra()