Searched refs:stillAspect (Results 1 – 1 of 1) sorted by relevance
3066 float stillAspect = static_cast<float>(pictureWidth) / pictureHeight; in calculatePictureFovs() local3067 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect); in calculatePictureFovs()3096 if (stillAspect < previewAspect) { in calculatePictureFovs()3097 horizCropFactor *= stillAspect / previewAspect; in calculatePictureFovs()3099 vertCropFactor *= previewAspect / stillAspect; in calculatePictureFovs()3108 horizCropFactor = (arrayAspect > stillAspect) ? in calculatePictureFovs()3109 (stillAspect / arrayAspect) : 1.f; in calculatePictureFovs()3110 vertCropFactor = (arrayAspect < stillAspect) ? in calculatePictureFovs()3111 (arrayAspect / stillAspect) : 1.f; in calculatePictureFovs()