Searched refs:stillAspect (Results 1 – 1 of 1) sorted by relevance
2999 float stillAspect = static_cast<float>(pictureWidth) / pictureHeight; in calculatePictureFovs() local3000 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect); in calculatePictureFovs()3029 if (stillAspect < previewAspect) { in calculatePictureFovs()3030 horizCropFactor *= stillAspect / previewAspect; in calculatePictureFovs()3032 vertCropFactor *= previewAspect / stillAspect; in calculatePictureFovs()3041 horizCropFactor = (arrayAspect > stillAspect) ? in calculatePictureFovs()3042 (stillAspect / arrayAspect) : 1.f; in calculatePictureFovs()3043 vertCropFactor = (arrayAspect < stillAspect) ? in calculatePictureFovs()3044 (arrayAspect / stillAspect) : 1.f; in calculatePictureFovs()