Lines Matching refs:pSrc
54 EResult CImageRotating::ProcessImageRotate (int32_t iType, uint8_t* pSrc, uint32_t uiBytesPerPixel,… in ProcessImageRotate() argument
57 m_pfRotateImage.pfImageRotate90D (pSrc, uiBytesPerPixel, iWidth, iHeight, pDst); in ProcessImageRotate()
59 m_pfRotateImage.pfImageRotate180D (pSrc, uiBytesPerPixel, iWidth, iHeight, pDst); in ProcessImageRotate()
61 m_pfRotateImage.pfImageRotate270D (pSrc, uiBytesPerPixel, iWidth, iHeight, pDst); in ProcessImageRotate()
68 EResult CImageRotating::Process (int32_t iType, SPixMap* pSrc, SPixMap* pDst) { in Process() argument
71 if ((pSrc->eFormat == VIDEO_FORMAT_RGBA) || in Process()
72 (pSrc->eFormat == VIDEO_FORMAT_BGRA) || in Process()
73 (pSrc->eFormat == VIDEO_FORMAT_ABGR) || in Process()
74 (pSrc->eFormat == VIDEO_FORMAT_ARGB)) { in Process()
75 …eReturn = ProcessImageRotate (iType, (uint8_t*)pSrc->pPixel[0], pSrc->iSizeInBits * 8, pSrc->sRect… in Process()
76 pSrc->sRect.iRectHeight, (uint8_t*)pDst->pPixel[0]); in Process()
77 } else if (pSrc->eFormat == VIDEO_FORMAT_I420) { in Process()
78 …ProcessImageRotate (iType, (uint8_t*)pSrc->pPixel[0], pSrc->iSizeInBits * 8, pSrc->sRect.iRectWidt… in Process()
79 pSrc->sRect.iRectHeight, (uint8_t*)pDst->pPixel[0]); in Process()
80 …ProcessImageRotate (iType, (uint8_t*)pSrc->pPixel[1], pSrc->iSizeInBits * 8, (pSrc->sRect.iRectWid… in Process()
81 (pSrc->sRect.iRectHeight >> 1), (uint8_t*)pDst->pPixel[1]); in Process()
82 …eReturn = ProcessImageRotate (iType, (uint8_t*)pSrc->pPixel[2], pSrc->iSizeInBits * 8, (pSrc->sRec… in Process()
83 (pSrc->sRect.iRectHeight >> 1), (uint8_t*)pDst->pPixel[2]); in Process()