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.cpp3274 float arrayAspect = static_cast<float>(fastInfo.arrayWidth) / in calculatePictureFovs() local
3277 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect); in calculatePictureFovs()
3300 if (arrayAspect < previewAspect) { in calculatePictureFovs()
3301 vertCropFactor = arrayAspect / previewAspect; in calculatePictureFovs()
3303 horizCropFactor = previewAspect / arrayAspect; in calculatePictureFovs()
3318 horizCropFactor = (arrayAspect > stillAspect) ? in calculatePictureFovs()
3319 (stillAspect / arrayAspect) : 1.f; in calculatePictureFovs()
3320 vertCropFactor = (arrayAspect < stillAspect) ? in calculatePictureFovs()
3321 (arrayAspect / stillAspect) : 1.f; in calculatePictureFovs()