Home
last modified time | relevance | path

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

/aosp12/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp3317 float arrayAspect = static_cast<float>(fastInfo.arrayWidth) / in calculatePictureFovs() local
3320 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect); in calculatePictureFovs()
3343 if (arrayAspect < previewAspect) { in calculatePictureFovs()
3344 vertCropFactor = arrayAspect / previewAspect; in calculatePictureFovs()
3346 horizCropFactor = previewAspect / arrayAspect; in calculatePictureFovs()
3361 horizCropFactor = (arrayAspect > stillAspect) ? in calculatePictureFovs()
3362 (stillAspect / arrayAspect) : 1.f; in calculatePictureFovs()
3363 vertCropFactor = (arrayAspect < stillAspect) ? in calculatePictureFovs()
3364 (arrayAspect / stillAspect) : 1.f; in calculatePictureFovs()