Lines Matching refs:rView
799 std::shared_ptr<C2GraphicView> rView; in process() local
803 rView = std::make_shared<C2GraphicView>( in process()
805 if (rView->error() != C2_OK) { in process()
806 ALOGE("graphic view map err = %d", rView->error()); in process()
825 const C2PlanarLayout& layout = rView->layout(); in process()
843 rView->setCrop_be(C2Rect(mSize->width, mSize->height)); in process()
915 mConversionBuffer.size(), *rView.get(), colorAspects->matrix, in process()
922 const bool isYUV420_10bit = IsYUV420_10bit(*rView); in process()
923 if (!IsYUV420(*rView) && !isYUV420_10bit) { in process()
929 if (IsI420(*rView)) { in process()
932 (uint8_t*)rView->data()[0]); in process()
933 raw_frame.planes[1] = (uint8_t*)rView->data()[1]; in process()
934 raw_frame.planes[2] = (uint8_t*)rView->data()[2]; in process()
943 status_t err = ImageCopy(mConversionBuffer.data(), &img, *rView); in process()
960 if (IsP010(*rView)) { in process()
966 convertP010ToYUV420Planar16(dstY, dstU, dstV, (uint16_t*)(rView->data()[0]), in process()
967 (uint16_t*)(rView->data()[1]), in process()
995 convertRGBA1010102ToYUV420Planar16(dstY, dstU, dstV, (uint32_t*)(rView->data()[0]), in process()