• Home
  • Raw
  • Download

Lines Matching refs:yPlane

263                 C2PlaneInfo yPlane = layout.planes[C2PlanarLayout::PLANE_Y];  in GraphicView2MediaImageConverter()  local
266 if (yPlane.channel != C2PlaneInfo::CHANNEL_Y in GraphicView2MediaImageConverter()
273 bool yuv420888 = yPlane.rowSampling == 1 && yPlane.colSampling == 1 in GraphicView2MediaImageConverter()
284 yuv420888 = yuv420888 && yPlane.colInc == 1 && uPlane.rowInc == vPlane.rowInc; in GraphicView2MediaImageConverter()
289 && yPlane.rowInc == uPlane.rowInc) { in GraphicView2MediaImageConverter()
292 && yPlane.rowInc == uPlane.rowInc * 2) { in GraphicView2MediaImageConverter()
299 yPlane.colInc, yPlane.rowInc, in GraphicView2MediaImageConverter()
326 && yPlane.rowInc == uPlane.rowInc * 2 in GraphicView2MediaImageConverter()
354 && yPlane.rowInc == uPlane.rowInc in GraphicView2MediaImageConverter()
379 tryWrapping = yPlane.allocatedDepth == 16 in GraphicView2MediaImageConverter()
382 && yPlane.bitDepth == 10 in GraphicView2MediaImageConverter()
385 && yPlane.rightShift == 6 in GraphicView2MediaImageConverter()
388 && yPlane.rowSampling == 1 && yPlane.colSampling == 1 in GraphicView2MediaImageConverter()
391 && yPlane.colInc == 2 in GraphicView2MediaImageConverter()
394 && yPlane.rowInc == uPlane.rowInc in GraphicView2MediaImageConverter()
395 && yPlane.rowInc == vPlane.rowInc; in GraphicView2MediaImageConverter()
403 int32_t rowInc = stride * colInc / yPlane.colSampling; in GraphicView2MediaImageConverter()
407 mediaImage->mPlane[mediaImage->Y].mHorizSubsampling = yPlane.colSampling; in GraphicView2MediaImageConverter()
408 mediaImage->mPlane[mediaImage->Y].mVertSubsampling = yPlane.rowSampling; in GraphicView2MediaImageConverter()
409 int32_t offset = rowInc * vStride / yPlane.rowSampling; in GraphicView2MediaImageConverter()