Lines Matching refs:rView
432 std::shared_ptr<const C2GraphicView> rView; in process() local
436 rView = std::make_shared<const C2GraphicView>( in process()
438 if (rView->error() != C2_OK) { in process()
439 ALOGE("graphic view map err = %d", rView->error()); in process()
469 const C2PlanarLayout &layout = rView->layout(); in process()
470 uint32_t width = rView->width(); in process()
471 uint32_t height = rView->height(); in process()
483 mConversionBuffer.size(), *rView.get()); in process()
489 if (!IsYUV420(*rView)) { in process()
500 mStrideAlign, (uint8_t*)rView->data()[0]); in process()
501 raw_frame.planes[1] = (uint8_t*)rView->data()[1]; in process()
502 raw_frame.planes[2] = (uint8_t*)rView->data()[2]; in process()
510 status_t err = ImageCopy(mConversionBuffer.data(), &img, *rView); in process()
517 mStrideAlign, (uint8_t*)rView->data()[0]); in process()