Lines Matching refs:uTargetWidth
68 uint32_t uTargetWidth;
473 * @param uTargetWidth Width of the target image in the video recoriding file (movie)
487 pStrm->uTargetWidth = uWidth;
768 if (!colorConvWriteYUV420p<ColorConvBGRA32Iter>(pStrm->uTargetWidth,
776 if (!colorConvWriteYUV420p<ColorConvBGR24Iter>(pStrm->uTargetWidth,
784 if (!colorConvWriteYUV420p<ColorConvBGR565Iter>(pStrm->uTargetWidth,
851 int xDiff = ((int)pStrm->uTargetWidth - (int)uSourceWidth) / 2;
887 if ( destX > pStrm->uTargetWidth
894 if (destX + w > pStrm->uTargetWidth)
895 w = pStrm->uTargetWidth - destX;
930 memset(pStrm->pu8RgbBuf, 0, pStrm->uTargetWidth * pStrm->uTargetHeight * 4);
937 uint32_t offDst = (destY * pStrm->uTargetWidth + destX) * bpp;
943 Assert(offDst + w * bpp <= pStrm->uTargetHeight * pStrm->uTargetWidth * bpp);
946 offDst += pStrm->uTargetWidth * bpp;