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

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp2957 float arrayAspect = static_cast<float>(fastInfo.arrayWidth) / local
2960 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect);
2983 if (arrayAspect < previewAspect) {
2984 vertCropFactor = arrayAspect / previewAspect;
2986 horizCropFactor = previewAspect / arrayAspect;
3001 horizCropFactor = (arrayAspect > stillAspect) ?
3002 (stillAspect / arrayAspect) : 1.f;
3003 vertCropFactor = (arrayAspect < stillAspect) ?
3004 (arrayAspect / stillAspect) : 1.f;

Completed in 10 milliseconds