Searched refs:rowInc (Results 1 – 8 of 8) sorted by relevance
91 bool canCopyByPlane = canCopyByRow && (plane.rowInc == img->mPlane[i].mRowInc); in _ImageCopy()93 MemCopier<ToMediaImage, 0>::copy(imgRow, viewRow, plane.rowInc * planeH); in _ImageCopy()97 imgRow, viewRow, std::min(plane.rowInc, img->mPlane[i].mRowInc)); in _ImageCopy()99 viewRow += plane.rowInc; in _ImageCopy()111 viewRow += plane.rowInc; in _ImageCopy()129 int32_t src_stride_y = view.layout().planes[0].rowInc; in ImageCopy()130 int32_t src_stride_u = view.layout().planes[1].rowInc; in ImageCopy()131 int32_t src_stride_v = view.layout().planes[2].rowInc; in ImageCopy()170 int32_t dst_stride_y = view.layout().planes[0].rowInc; in ImageCopy()171 int32_t dst_stride_u = view.layout().planes[1].rowInc; in ImageCopy()[all …]
503 raw_frame.stride[0] = layout.planes[layout.PLANE_Y].rowInc; in process()504 raw_frame.stride[1] = layout.planes[layout.PLANE_U].rowInc; in process()505 raw_frame.stride[2] = layout.planes[layout.PLANE_V].rowInc; in process()
497 int32_t yStride = layout.planes[C2PlanarLayout::PLANE_Y].rowInc; in process()498 int32_t uStride = layout.planes[C2PlanarLayout::PLANE_U].rowInc; in process()499 int32_t vStride = layout.planes[C2PlanarLayout::PLANE_V].rowInc; in process()
1488 int32_t rowInc; ///< row increment in bytes. may be negative member1536 if (height > 0 && rowInc < 0) { in minOffset()1537 offs += rowInc * (ssize_t)(height - 1); in minOffset()1547 if (height > 0 && rowInc > 0) { in maxOffset()1548 offs += rowInc * (ssize_t)(height - 1); in maxOffset()
281 planeSize += std::abs(plane.rowInc) * align(mHeight, 64) in GraphicView2MediaImageConverter()293 mediaImage->mPlane[i].mRowInc = plane.rowInc; in GraphicView2MediaImageConverter()
1156 int32_t yStride = layout.planes[C2PlanarLayout::PLANE_Y].rowInc; in setEncodeArgs()1157 int32_t uStride = layout.planes[C2PlanarLayout::PLANE_U].rowInc; in setEncodeArgs()1158 int32_t vStride = layout.planes[C2PlanarLayout::PLANE_V].rowInc; in setEncodeArgs()
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()