Home
last modified time | relevance | path

Searched refs:sensorOrientation (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/one/v2/
DAutoFocusHelper.java127 float fraction, final Rect cropRegion, int sensorOrientation) { in regionsForNormalizedCoord() argument
138 nx, ny, sensorOrientation); in regionsForNormalizedCoord()
168 float ny, final Rect cropRegion, int sensorOrientation) { in afRegionsForNormalizedCoord() argument
170 cropRegion, sensorOrientation); in afRegionsForNormalizedCoord()
184 float ny, final Rect cropRegion, int sensorOrientation) { in aeRegionsForNormalizedCoord() argument
186 cropRegion, sensorOrientation); in aeRegionsForNormalizedCoord()
200 float ny, final Rect cropRegion, int sensorOrientation) { in gcamAERegionsForNormalizedCoord() argument
202 cropRegion, sensorOrientation); in gcamAERegionsForNormalizedCoord()
DOneCameraImpl.java625 int sensorOrientation = mCharacteristics.get( in triggerFocusAndMeterAtPoint() local
627 … mAERegions = AutoFocusHelper.aeRegionsForNormalizedCoord(nx, ny, mCropRegion, sensorOrientation); in triggerFocusAndMeterAtPoint()
628 … mAFRegions = AutoFocusHelper.afRegionsForNormalizedCoord(nx, ny, mCropRegion, sensorOrientation); in triggerFocusAndMeterAtPoint()
DOneCameraZslImpl.java1002 int sensorOrientation = mCharacteristics.get( in triggerFocusAndMeterAtPoint() local
1004 … mAERegions = AutoFocusHelper.aeRegionsForNormalizedCoord(nx, ny, mCropRegion, sensorOrientation); in triggerFocusAndMeterAtPoint()
1005 … mAFRegions = AutoFocusHelper.afRegionsForNormalizedCoord(nx, ny, mCropRegion, sensorOrientation); in triggerFocusAndMeterAtPoint()
/packages/apps/Camera2/src/com/android/camera/util/
DCameraUtil.java388 float nx, float ny, int sensorOrientation) { in normalizedSensorCoordsForNormalizedDisplayCoords() argument
389 switch (sensorOrientation) { in normalizedSensorCoordsForNormalizedDisplayCoords()
1342 int sensorOrientation = characteristics.get(CameraCharacteristics.SENSOR_ORIENTATION); in getJpegRotation() local
1344 return (sensorOrientation + deviceOrientationDegrees) % 360; in getJpegRotation()
1346 return (sensorOrientation - deviceOrientationDegrees + 360) % 360; in getJpegRotation()