Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/device3/
DRotateAndCropMapper.cpp132 float xShift = 0; in updateCaptureRequest() local
138 xShift = cw; in updateCaptureRequest()
151 xShift = (cw + rw) / 2; // left edge of crop to right edge of rotated in updateCaptureRequest()
157 xShift = (cw - rw) / 2; // left edge of crop to left edge of rotated in updateCaptureRequest()
173 transformPoints(entry.data.i32 + i, 2, transformMat, xShift, yShift, cx, cy); in updateCaptureRequest()
256 float xShift = 0; in updateCaptureResult() local
263 xShift = cw; in updateCaptureResult()
280 xShift = -(cw - rw) / 2; // left edge of rotated to left edge of cropped in updateCaptureResult()
286 xShift = (cw + rw) / 2; // left edge of rotated to left edge of cropped in updateCaptureResult()
302 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
55 mXShift = Preconditions.checkArgumentFinite(xShift, "xShift must be finite"); in OisSample()