Lines Matching refs:rView
852 std::shared_ptr<C2GraphicView> rView; in process() local
856 rView = std::make_shared<C2GraphicView>( in process()
858 if (rView->error() != C2_OK) { in process()
859 ALOGE("graphic view map err = %d", rView->error()); in process()
865 rView->setCrop_be(C2Rect(mSize->width, mSize->height)); in process()
913 const C2PlanarLayout &layout = rView->layout(); in process()
932 mConversionBuffer.size(), *rView.get(), in process()
939 if (!IsYUV420(*rView)) { in process()
950 mStrideAlign, (uint8_t*)rView->data()[0]); in process()
951 raw_frame.planes[1] = (uint8_t*)rView->data()[1]; in process()
952 raw_frame.planes[2] = (uint8_t*)rView->data()[2]; in process()
960 status_t err = ImageCopy(mConversionBuffer.data(), &img, *rView); in process()