Searched refs:arrayHeight (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/services/camera/libcameraservice/device3/ |
D | ZoomRatioMapper.cpp | 219 int32_t *arrayWidth, int32_t *arrayHeight) { in getArrayDimensionsToBeUsed() argument 220 if (settings == nullptr || arrayWidth == nullptr || arrayHeight == nullptr) { in getArrayDimensionsToBeUsed() 237 *arrayHeight = mArrayHeight; in getArrayDimensionsToBeUsed() 240 *arrayHeight = mArrayHeightMaximumResolution; in getArrayDimensionsToBeUsed() 250 int arrayHeight, arrayWidth = 0; in updateCaptureRequest() local 251 res = getArrayDimensionsToBeUsed(request, &arrayWidth, &arrayHeight); in updateCaptureRequest() 269 if (cropWidth < arrayWidth && cropHeight < arrayHeight) { in updateCaptureRequest() 273 cropRegionEntry.data.i32[3] = arrayHeight; in updateCaptureRequest() 279 res = separateZoomFromCropLocked(request, false/*isResult*/, arrayWidth, arrayHeight); in updateCaptureRequest() 281 res = combineZoomAndCropLocked(request, false/*isResult*/, arrayWidth, arrayHeight); in updateCaptureRequest() [all …]
|
D | ZoomRatioMapper.h | 73 float scaleRatio, bool clamp, int32_t arrayWidth, int32_t arrayHeight); 75 int32_t arrayWidth, int32_t arrayHeight); 90 int arrayHeight); 92 int32_t arrayHeight); 95 int arrayHeight); 97 int arrayHeight); 99 int32_t *arrayHeight);
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
D | Parameters.cpp | 1055 int32_t arrayHeight; in buildFastInfo() local 1060 arrayHeight = activeArraySize.data.i32[1]; in buildFastInfo() 1063 arrayHeight = activeArraySize.data.i32[3]; in buildFastInfo() 1249 fastInfo.arrayHeight = arrayHeight; in buildFastInfo() 2945 ALOG_ASSERT( (ret >= 0 && ret < fastInfo.arrayHeight), in cropYToArray() 2947 ret, fastInfo.arrayHeight); in cropYToArray() 2976 return (y + 1000) * (fastInfo.arrayHeight - 1) / 2000; in normalizedYToArray() 3023 return y * 2000 / (fastInfo.arrayHeight - 1) - 1000; in arrayYToNormalizedWithCrop() 3283 previewHeight, fastInfo.arrayWidth, fastInfo.arrayHeight); in calculateCropRegion() 3297 float arrayRatio = 1.f * fastInfo.arrayWidth / fastInfo.arrayHeight; in calculateCropRegion() [all …]
|
D | Parameters.h | 234 int32_t arrayHeight; member
|