Searched refs:rowInc (Results 1 – 8 of 8) sorted by relevance
100 viewRow += plane.rowInc; in _ImageCopy()264 pRed += layout.planes[C2PlanarLayout::PLANE_R].rowInc; in ConvertRGBToPlanarYUV()265 pGreen += layout.planes[C2PlanarLayout::PLANE_G].rowInc; in ConvertRGBToPlanarYUV()266 pBlue += layout.planes[C2PlanarLayout::PLANE_B].rowInc; in ConvertRGBToPlanarYUV()
479 raw_frame.stride[0] = layout.planes[layout.PLANE_Y].rowInc; in process()480 raw_frame.stride[1] = layout.planes[layout.PLANE_U].rowInc; in process()481 raw_frame.stride[2] = layout.planes[layout.PLANE_V].rowInc; in process()
401 int32_t yStride = layout.planes[C2PlanarLayout::PLANE_Y].rowInc; in process()402 int32_t uStride = layout.planes[C2PlanarLayout::PLANE_U].rowInc; in process()403 int32_t vStride = layout.planes[C2PlanarLayout::PLANE_V].rowInc; in process()
1489 int32_t rowInc; ///< row increment in bytes. may be negative member1537 if (height > 0 && rowInc < 0) { in minOffset()1538 offs += rowInc * (ssize_t)(height - 1); in minOffset()1548 if (height > 0 && rowInc > 0) { in maxOffset()1549 offs += rowInc * (ssize_t)(height - 1); in maxOffset()
939 int32_t yStride = layout.planes[C2PlanarLayout::PLANE_Y].rowInc; in setEncodeArgs()940 int32_t uStride = layout.planes[C2PlanarLayout::PLANE_U].rowInc; in setEncodeArgs()941 int32_t vStride = layout.planes[C2PlanarLayout::PLANE_V].rowInc; in setEncodeArgs()
279 planeSize += std::abs(plane.rowInc) * align(mHeight, 64) in GraphicView2MediaImageConverter()291 mediaImage->mPlane[i].mRowInc = plane.rowInc; in GraphicView2MediaImageConverter()
431 int32_t rowOffset = (row + rect.top / info.rowSampling) * info.rowInc; in fillPlane()441 int32_t rowOffset = (row + rect.top / info.rowSampling) * info.rowInc; in verifyPlane()
881 + (ssize_t)crop.top * mLayout.planes[planeIx].rowInc; in Mapped()