Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/device3/
DRotateAndCropMapper.cpp130 float yShift = 0; in updateCaptureRequest() local
136 yShift = ch; in updateCaptureRequest()
149 yShift = (ch - rh) / 2; // top edge of crop to top edge of rotated in updateCaptureRequest()
155 yShift = (ch + rh) / 2; // top edge of crop to bottom edge of rotated in updateCaptureRequest()
170 transformPoints(entry.data.i32 + i, 2, transformMat, xShift, yShift, cx, cy); in updateCaptureRequest()
254 float yShift = 0; in updateCaptureResult() local
261 yShift = ch; in updateCaptureResult()
278 yShift = ry - cy + ch; // top edge of rotated to bottom edge of cropped in updateCaptureResult()
284 yShift = (ch - rh) / 2; // top edge of rotated to bottom edge of cropped in updateCaptureResult()
299 transformPoints(entry.data.i32 + i, 2, transformMat, xShift, yShift, rx, ry); in updateCaptureResult()
[all …]
DRotateAndCropMapper.h57 float xShift, float yShift, float cx, float cy);
/frameworks/base/core/java/android/hardware/camera2/params/
DOisSample.java53 public OisSample(final long timestamp, final float xShift, final float yShift) { in OisSample() argument
56 mYShift = Preconditions.checkArgumentFinite(yShift, "yShift must be finite"); in OisSample()