Searched refs:uiBytesPerPixel (Results 1 – 3 of 3) sorted by relevance
/third_party/openh264/codec/processing/src/imagerotate/ |
D | imagerotatefuncs.cpp | 41 void ImageRotate90D_c (uint8_t* pSrc, uint32_t uiBytesPerPixel, uint32_t iWidth, uint32_t iHeight, … in ImageRotate90D_c() argument 44 for (uint32_t n = 0; n < uiBytesPerPixel; n++) in ImageRotate90D_c() 45 …pDst[ (i * iHeight + iHeight - 1 - j)*uiBytesPerPixel + n] = pSrc[ (iWidth * j + i) * uiBytesPerPi… in ImageRotate90D_c() 49 void ImageRotate180D_c (uint8_t* pSrc, uint32_t uiBytesPerPixel, uint32_t iWidth, uint32_t iHeight,… in ImageRotate180D_c() argument 52 for (uint32_t n = 0; n < uiBytesPerPixel; n++) in ImageRotate180D_c() 53 … ((iHeight - 1 - j)*iWidth + iWidth - 1 - i)*uiBytesPerPixel + n] = pSrc[ (iWidth * j + i) * uiByt… in ImageRotate180D_c() 57 void ImageRotate270D_c (uint8_t* pSrc, uint32_t uiBytesPerPixel, uint32_t iWidth, uint32_t iHeight,… in ImageRotate270D_c() argument 60 for (uint32_t n = 0; n < uiBytesPerPixel; n++) in ImageRotate270D_c() 61 …pDst[ ((iWidth - 1 - j)*iHeight + i)*uiBytesPerPixel + n] = pSrc[ (iWidth * i + j) * uiBytesPerPix… in ImageRotate270D_c()
|
D | imagerotate.cpp | 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()
|
D | imagerotate.h | 51 typedef void (ImageRotateFunc) (uint8_t* pSrc, uint32_t uiBytesPerPixel, uint32_t iWidth, uint32_t … 75 …EResult ProcessImageRotate (int32_t iType, uint8_t* pSrc, uint32_t uiBytesPerPixel, uint32_t iWidt…
|