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

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp2981 float arrayAspect = static_cast<float>(fastInfo.arrayWidth) / local
2984 ALOGV("Array aspect: %f, still aspect: %f", arrayAspect, stillAspect);
3007 if (arrayAspect < previewAspect) {
3008 vertCropFactor = arrayAspect / previewAspect;
3010 horizCropFactor = previewAspect / arrayAspect;
3025 horizCropFactor = (arrayAspect > stillAspect) ?
3026 (stillAspect / arrayAspect) : 1.f;
3027 vertCropFactor = (arrayAspect < stillAspect) ?
3028 (arrayAspect / stillAspect) : 1.f;

Completed in 484 milliseconds