Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.cpp3273 float arrayAspect = static_cast<float>(fastInfo.arrayWidth) / in calculatePictureFovs() local
3276 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect); in calculatePictureFovs()
3299 if (arrayAspect < previewAspect) { in calculatePictureFovs()
3300 vertCropFactor = arrayAspect / previewAspect; in calculatePictureFovs()
3302 horizCropFactor = previewAspect / arrayAspect; in calculatePictureFovs()
3317 horizCropFactor = (arrayAspect > stillAspect) ? in calculatePictureFovs()
3318 (stillAspect / arrayAspect) : 1.f; in calculatePictureFovs()
3319 vertCropFactor = (arrayAspect < stillAspect) ? in calculatePictureFovs()
3320 (arrayAspect / stillAspect) : 1.f; in calculatePictureFovs()