Home
last modified time | relevance | path

Searched refs:stillAspect (Results 1 – 1 of 1) sorted by relevance

/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.cpp2983 float stillAspect = static_cast<float>(pictureWidth) / pictureHeight; in calculatePictureFovs() local
2984 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect); in calculatePictureFovs()
3013 if (stillAspect < previewAspect) { in calculatePictureFovs()
3014 horizCropFactor *= stillAspect / previewAspect; in calculatePictureFovs()
3016 vertCropFactor *= previewAspect / stillAspect; in calculatePictureFovs()
3025 horizCropFactor = (arrayAspect > stillAspect) ? in calculatePictureFovs()
3026 (stillAspect / arrayAspect) : 1.f; in calculatePictureFovs()
3027 vertCropFactor = (arrayAspect < stillAspect) ? in calculatePictureFovs()
3028 (arrayAspect / stillAspect) : 1.f; in calculatePictureFovs()