Home
last modified time | relevance | path

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

/frameworks/av/camera/
DCameraMetadata.cpp562 const size_t blobSize = static_cast<size_t>(blobSizeTmp); in readFromParcel() local
566 if (blobSize == 0) { in readFromParcel()
571 if (blobSize <= alignment) { in readFromParcel()
573 __FUNCTION__, blobSize, alignment); in readFromParcel()
577 const size_t metadataSize = blobSize - alignment; in readFromParcel()
585 if ((err = data.readBlob(blobSize, &blob)) != OK) { in readFromParcel()
588 __FUNCTION__, blobSize, err, strerror(-err)); in readFromParcel()
603 __FUNCTION__, blobSize, alignment); in readFromParcel()
670 const size_t blobSize = metadataSize + alignment; in writeToParcel() local
671 res = data.writeInt32(static_cast<int32_t>(blobSize)); in writeToParcel()
[all …]
/frameworks/base/core/jni/
Dandroid_hardware_camera2_impl_CameraExtensionJpegProcessor.cpp612 blob->blobSize = actualJpegSize; in CameraExtensionJpegProcessor_compressJpegFromYUV420p()
/frameworks/ex/camera2/extensions/jni/
DJpegEncoder.cpp611 blob->blobSize = actualJpegSize; in JpegEncoder_compressJpegFromYUV420p()
/frameworks/av/services/camera/libcameraservice/common/
DCameraProviderManager.cpp1200 for (const auto& blobSize : blobSizes) { in getSupportedDynamicDepthSizes() local
1201 float jpegAR = static_cast<float> (std::get<0>(blobSize)) / in getSupportedDynamicDepthSizes()
1202 static_cast<float>(std::get<1>(blobSize)); in getSupportedDynamicDepthSizes()
1205 if (depthSize == blobSize) { in getSupportedDynamicDepthSizes()
1221 dynamicDepthSizes->push_back(blobSize); in getSupportedDynamicDepthSizes()