Lines Matching refs:rView
461 std::shared_ptr<const C2GraphicView> rView; in process() local
466 rView = std::make_shared<const C2GraphicView>( in process()
468 if (rView->error() != C2_OK) { in process()
469 ALOGE("graphic view map err = %d", rView->error()); in process()
470 work->result = rView->error(); in process()
493 const C2PlanarLayout &layout = rView->layout(); in process()
494 uint8_t *yPlane = const_cast<uint8_t *>(rView->data()[C2PlanarLayout::PLANE_Y]); in process()
495 uint8_t *uPlane = const_cast<uint8_t *>(rView->data()[C2PlanarLayout::PLANE_U]); in process()
496 uint8_t *vPlane = const_cast<uint8_t *>(rView->data()[C2PlanarLayout::PLANE_V]); in process()
517 ConvertRGBToPlanarYUV(yPlane, yStride, height, conversionBuffer.size(), *rView.get()); in process()
521 if (!IsYUV420(*rView)) { in process()
540 status_t err = ImageCopy(conversionBuffer.data(), &img, *rView); in process()