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