Home
last modified time | relevance | path

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

/frameworks/av/camera/
DCameraMetadata.cpp564 const size_t blobSize = static_cast<size_t>(blobSizeTmp); in readFromParcel() local
568 if (blobSize == 0) { in readFromParcel()
573 if (blobSize <= alignment) { in readFromParcel()
575 __FUNCTION__, blobSize, alignment); in readFromParcel()
579 const size_t metadataSize = blobSize - alignment; in readFromParcel()
587 if ((err = data.readBlob(blobSize, &blob)) != OK) { in readFromParcel()
590 __FUNCTION__, blobSize, err, strerror(-err)); in readFromParcel()
605 __FUNCTION__, blobSize, alignment); in readFromParcel()
672 const size_t blobSize = metadataSize + alignment; in writeToParcel() local
673 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.cpp1225 for (const auto& blobSize : blobSizes) { in getSupportedDynamicDepthSizes() local
1226 float jpegAR = static_cast<float> (std::get<0>(blobSize)) / in getSupportedDynamicDepthSizes()
1227 static_cast<float>(std::get<1>(blobSize)); in getSupportedDynamicDepthSizes()
1230 if (depthSize == blobSize) { in getSupportedDynamicDepthSizes()
1246 dynamicDepthSizes->push_back(blobSize); in getSupportedDynamicDepthSizes()