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

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp2967 float arrayAspect = static_cast<float>(fastInfo.arrayWidth) / local
2970 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect);
2993 if (arrayAspect < previewAspect) {
2994 vertCropFactor = arrayAspect / previewAspect;
2996 horizCropFactor = previewAspect / arrayAspect;
3011 horizCropFactor = (arrayAspect > stillAspect) ?
3012 (stillAspect / arrayAspect) : 1.f;
3013 vertCropFactor = (arrayAspect < stillAspect) ?
3014 (arrayAspect / stillAspect) : 1.f;

Completed in 1231 milliseconds