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.cpp3084 float arrayAspect = static_cast<float>(fastInfo.arrayWidth) / in calculatePictureFovs() local
3087 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect); in calculatePictureFovs()
3110 if (arrayAspect < previewAspect) { in calculatePictureFovs()
3111 vertCropFactor = arrayAspect / previewAspect; in calculatePictureFovs()
3113 horizCropFactor = previewAspect / arrayAspect; in calculatePictureFovs()
3128 horizCropFactor = (arrayAspect > stillAspect) ? in calculatePictureFovs()
3129 (stillAspect / arrayAspect) : 1.f; in calculatePictureFovs()
3130 vertCropFactor = (arrayAspect < stillAspect) ? in calculatePictureFovs()
3131 (arrayAspect / stillAspect) : 1.f; in calculatePictureFovs()