Searched refs:stillAspect (Results 1 – 1 of 1) sorted by relevance
3275 float stillAspect = static_cast<float>(pictureWidth) / pictureHeight; in calculatePictureFovs() local3276 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect); in calculatePictureFovs()3305 if (stillAspect < previewAspect) { in calculatePictureFovs()3306 horizCropFactor *= stillAspect / previewAspect; in calculatePictureFovs()3308 vertCropFactor *= previewAspect / stillAspect; 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()