Home
last modified time | relevance | path

Searched refs:depthPhotoActualSize (Results 1 – 1 of 1) sorted by relevance

/frameworks/av/services/camera/libcameraservice/common/
DDepthPhotoProcessor.cpp414 void* depthPhotoBuffer /*out*/, size_t* depthPhotoActualSize /*out*/) { in processDepthPhotoFrame() argument
416 (depthPhotoBuffer == nullptr) || (depthPhotoActualSize == nullptr)) { in processDepthPhotoFrame()
502 *depthPhotoActualSize = static_cast<size_t> (outputJpegStream.tellp()); in processDepthPhotoFrame()
503 if (*depthPhotoActualSize > depthPhotoBufferSize) { in processDepthPhotoFrame()
505 *depthPhotoActualSize, depthPhotoBufferSize); in processDepthPhotoFrame()
509 memcpy(depthPhotoBuffer, outputJpegStream.str().c_str(), *depthPhotoActualSize); in processDepthPhotoFrame()