Searched refs:stillAspect (Results 1 – 1 of 1) sorted by relevance
3365 float stillAspect = static_cast<float>(pictureWidth) / pictureHeight; in calculatePictureFovs() local3366 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect); in calculatePictureFovs()3395 if (stillAspect < previewAspect) { in calculatePictureFovs()3396 horizCropFactor *= stillAspect / previewAspect; in calculatePictureFovs()3398 vertCropFactor *= previewAspect / stillAspect; in calculatePictureFovs()3407 horizCropFactor = (arrayAspect > stillAspect) ? in calculatePictureFovs()3408 (stillAspect / arrayAspect) : 1.f; in calculatePictureFovs()3409 vertCropFactor = (arrayAspect < stillAspect) ? in calculatePictureFovs()3410 (arrayAspect / stillAspect) : 1.f; in calculatePictureFovs()