Searched refs:arrayAspect (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp2997 float arrayAspect = static_cast<float>(fastInfo.arrayWidth) / local
3000 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect);
3023 if (arrayAspect < previewAspect) {
3024 vertCropFactor = arrayAspect / previewAspect;
3026 horizCropFactor = previewAspect / arrayAspect;
3041 horizCropFactor = (arrayAspect > stillAspect) ?
3042 (stillAspect / arrayAspect) : 1.f;
3043 vertCropFactor = (arrayAspect < stillAspect) ?
3044 (arrayAspect / stillAspect) : 1.f;

Completed in 29 milliseconds