Lines Matching refs:plane

266                                 const C2PlaneInfo &plane = layout.planes[i];  in GraphicView2MediaImageConverter()  local
267 ssize_t minOffset = plane.minOffset(mWidth, mHeight); in GraphicView2MediaImageConverter()
268 ssize_t maxOffset = plane.maxOffset(mWidth, mHeight); in GraphicView2MediaImageConverter()
275 planeSize += std::abs(plane.rowInc) * align(mHeight, 64) in GraphicView2MediaImageConverter()
276 / plane.rowSampling / plane.colSampling in GraphicView2MediaImageConverter()
285 const C2PlaneInfo &plane = layout.planes[i]; in GraphicView2MediaImageConverter() local
287 mediaImage->mPlane[i].mColInc = plane.colInc; in GraphicView2MediaImageConverter()
288 mediaImage->mPlane[i].mRowInc = plane.rowInc; in GraphicView2MediaImageConverter()
289 mediaImage->mPlane[i].mHorizSubsampling = plane.colSampling; in GraphicView2MediaImageConverter()
290 mediaImage->mPlane[i].mVertSubsampling = plane.rowSampling; in GraphicView2MediaImageConverter()
406 const C2PlaneInfo &plane = layout.planes[i]; in GraphicView2MediaImageConverter() local
407 if (plane.allocatedDepth < plane.bitDepth in GraphicView2MediaImageConverter()
408 || plane.rightShift != plane.allocatedDepth - plane.bitDepth) { in GraphicView2MediaImageConverter()
409 ALOGD("rightShift value of %u unsupported", plane.rightShift); in GraphicView2MediaImageConverter()
413 if (plane.allocatedDepth > 8 && plane.endianness != C2PlaneInfo::NATIVE) { in GraphicView2MediaImageConverter()
414 ALOGD("endianness value of %u unsupported", plane.endianness); in GraphicView2MediaImageConverter()
418 if (plane.allocatedDepth != mAllocatedDepth || plane.bitDepth != bitDepth) { in GraphicView2MediaImageConverter()
424 / plane.rowSampling / plane.colSampling; in GraphicView2MediaImageConverter()