Home | History | Annotate | Download | only in libI420colorconvert

Lines Matching refs:dstWidth

33     int dstWidth = srcRect.right - srcRect.left + 1;
35 size_t dst_y_size = dstWidth * dstHeight;
36 size_t dst_uv_stride = dstWidth / 2;
37 size_t dst_uv_size = dstWidth / 2 * dstHeight / 2;
43 memcpy(pDst_y, pSrc_y, dstWidth);
45 pDst_y += dstWidth;
48 size_t tmp = (dstWidth + 1) / 2;
67 int dstWidth, int dstHeight, ARect dstRect,
74 pDst_y += dstWidth;
78 uint8_t* pDst_uv = (uint8_t*)dstBits + dstWidth * dstHeight;
85 pDst_uv += dstWidth;