Searched refs:depthWidth (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/services/camera/libcameraservice/api2/ |
D | DepthCompositeStream.cpp | 510 size_t depthWidth, depthHeight; in createInternalStreams() local 511 auto ret = getMatchingDepthSize(width, height, mSupportedDepthSizes, &depthWidth, &depthHeight); in createInternalStreams() 547 ret = device->createStream(mDepthSurface, depthWidth, depthHeight, kDepthMapPixelFormat, in createInternalStreams() 729 size_t *depthWidth /*out*/, size_t *depthHeight /*out*/) { in getMatchingDepthSize() argument 730 if ((depthWidth == nullptr) || (depthHeight == nullptr)) { in getMatchingDepthSize() 735 *depthWidth = *depthHeight = 0; in getMatchingDepthSize() 742 *depthWidth = width; in getMatchingDepthSize() 749 auto oldSize = (*depthWidth) * (*depthHeight); in getMatchingDepthSize() 751 *depthWidth = currentWidth; in getMatchingDepthSize() 757 return ((*depthWidth > 0) && (*depthHeight > 0)) ? OK : BAD_VALUE; in getMatchingDepthSize() [all …]
|
D | DepthCompositeStream.h | 91 size_t *depthWidth /*out*/, size_t *depthHeight /*out*/);
|